From 9971112ea5ff852e1d513e509f7f2d1ac8dc36f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=95=B4=EB=A6=AC=28=EC=B5=9C=ED=98=84=EC=9B=85=29?= Date: Fri, 23 Aug 2024 03:59:40 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20Accent=20props=20=EA=B5=AC=EC=A1=B0?= =?UTF-8?q?=EC=9D=98=20=EB=B3=80=EA=B2=BD=20=EC=82=AC=ED=95=AD=EC=9D=B4=20?= =?UTF-8?q?=EB=B0=98=EC=98=81=EB=90=98=EC=A7=80=20=EC=95=8A=EC=95=98?= =?UTF-8?q?=EB=8D=98=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0=20(#310)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: Accent 컴포넌트 props 변경사항 반영 --- frontend/src/components/_common/Text/Accent/index.tsx | 2 +- frontend/src/pages/ErrorPage/index.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/_common/Text/Accent/index.tsx b/frontend/src/components/_common/Text/Accent/index.tsx index c22f45edf..e62912beb 100644 --- a/frontend/src/components/_common/Text/Accent/index.tsx +++ b/frontend/src/components/_common/Text/Accent/index.tsx @@ -1,7 +1,7 @@ import { s_accentTextStyle } from './Accent.styles'; interface AccentProps { - text: string; + text: string | number; } export default function Accent({ text }: AccentProps) { diff --git a/frontend/src/pages/ErrorPage/index.tsx b/frontend/src/pages/ErrorPage/index.tsx index 39f04060c..469ac893f 100644 --- a/frontend/src/pages/ErrorPage/index.tsx +++ b/frontend/src/pages/ErrorPage/index.tsx @@ -23,11 +23,11 @@ export default function ErrorPage({ error }: ErrorPageProps) {
- {responseError?.name} + {responseError?.message} - {responseError?.status} +