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}
-
+ ); };