From 5344493845ca9374c488acc6fc84a12b96e5a7db Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 8 Jan 2023 02:08:19 -0800 Subject: [PATCH] Fix mis-imported components --- .../components/route-error-boundary.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/renderer/features/action-required/components/route-error-boundary.tsx b/src/renderer/features/action-required/components/route-error-boundary.tsx index 7622e168..6f331752 100644 --- a/src/renderer/features/action-required/components/route-error-boundary.tsx +++ b/src/renderer/features/action-required/components/route-error-boundary.tsx @@ -1,7 +1,7 @@ -import { Container, Center, Stack, Group, Button, Divider } from '@mantine/core'; -import { RiArrowLeftSLine, RiErrorWarningLine, RiHomeFill } from 'react-icons/ri'; +import { Center, Stack, Group, Divider, Box } from '@mantine/core'; +import { RiArrowLeftSLine, RiErrorWarningLine, RiHome4Line } from 'react-icons/ri'; import { useNavigate, useRouteError } from 'react-router'; -import { Text } from '/@/renderer/components'; +import { Button, Text } from '/@/renderer/components'; import { AppRoute } from '/@/renderer/router/routes'; const RouteErrorBoundary = () => { @@ -22,7 +22,7 @@ const RouteErrorBoundary = () => { }; return ( - +
@@ -43,7 +43,7 @@ const RouteErrorBoundary = () => { {error?.message}
-
+ ); };