diff --git a/client/src/components/AppErrorBoundary/ErrorCatcher.test.tsx b/client/src/components/AppErrorBoundary/ErrorCatcher.test.tsx index f263e18fb..e4b0bf72d 100644 --- a/client/src/components/AppErrorBoundary/ErrorCatcher.test.tsx +++ b/client/src/components/AppErrorBoundary/ErrorCatcher.test.tsx @@ -86,7 +86,7 @@ describe('ErrorCatcher', () => { }); await waitFor(() => { - expect(screen.getByText('알 수 없는 오류입니다.')).toBeInTheDocument(); + expect(screen.getByText('알 수 없는 오류가 발생했습니다.')).toBeInTheDocument(); }); }); }); diff --git a/client/src/pages/ErrorPage/ErrorPage.tsx b/client/src/pages/ErrorPage/ErrorPage.tsx index 92810e668..3d7ba9c8a 100644 --- a/client/src/pages/ErrorPage/ErrorPage.tsx +++ b/client/src/pages/ErrorPage/ErrorPage.tsx @@ -1,13 +1,27 @@ -import Top from '@components/Design/components/Top/Top'; +import Image from '@components/Design/components/Image/Image'; -import {MainLayout} from '@HDesign/index'; +import {Flex, MainLayout, Text} from '@HDesign/index'; + +import getImageUrl from '@utils/getImageUrl'; const ErrorPage = () => { return ( - - - + + + 알 수 없는 오류가 발생했습니다. + + 계속 발생한다면 잠시 후 다시 시도해주세요.
+ 인터넷 연결 상태가 좋지 않으면 발생할 수 있습니다. +
+
); };