From 0585dfacbfde4f885e3ee5be54fa7b4bdc8b8869 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=B5=E1=84=86=E1=85=B5=E1=86=AB=E1=84=92?= =?UTF-8?q?=E1=85=B4?= Date: Sat, 7 Sep 2024 01:55:23 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20#330=20=EC=97=90=EB=9F=AC=EB=A9=94?= =?UTF-8?q?=EC=8B=9C=EC=A7=80=20=EA=B3=B5=EA=B0=84=EC=9D=84=20=EC=9C=84?= =?UTF-8?q?=ED=95=9C=20=EA=B0=84=EA=B2=A9=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/login/SetNicknamePage.tsx | 2 +- src/component/common/tip/TipCard.tsx | 9 ++++----- src/component/retrospectCreate/steps/MainInfo.tsx | 4 ++-- src/component/space/create/Info.tsx | 2 +- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/login/SetNicknamePage.tsx b/src/app/login/SetNicknamePage.tsx index 2a503d7c..c6afb5ab 100644 --- a/src/app/login/SetNicknamePage.tsx +++ b/src/app/login/SetNicknamePage.tsx @@ -34,7 +34,7 @@ export function SetNickNamePage() { 닉네임을 설정해주세요! - + diff --git a/src/component/common/tip/TipCard.tsx b/src/component/common/tip/TipCard.tsx index 1151a833..5b7c71bc 100644 --- a/src/component/common/tip/TipCard.tsx +++ b/src/component/common/tip/TipCard.tsx @@ -1,4 +1,4 @@ -import { css, Interpolation, Theme } from "@emotion/react"; +import { css } from "@emotion/react"; import { Typography } from "@/component/common/typography"; import { DESIGN_TOKEN_COLOR } from "@/style/designTokens"; @@ -6,10 +6,9 @@ import { DESIGN_TOKEN_COLOR } from "@/style/designTokens"; type TipCardProps = { message: string; header?: string; - styles?: Interpolation; -}; +} & React.HTMLAttributes; -export function TipCard({ message, header = "TIP", styles }: TipCardProps) { +export function TipCard({ message, header = "TIP", ...props }: TipCardProps) { return (
{header} diff --git a/src/component/retrospectCreate/steps/MainInfo.tsx b/src/component/retrospectCreate/steps/MainInfo.tsx index d8527335..8999207b 100644 --- a/src/component/retrospectCreate/steps/MainInfo.tsx +++ b/src/component/retrospectCreate/steps/MainInfo.tsx @@ -50,8 +50,8 @@ export function MainInfo() {
diff --git a/src/component/space/create/Info.tsx b/src/component/space/create/Info.tsx index a0adea38..67499c25 100644 --- a/src/component/space/create/Info.tsx +++ b/src/component/space/create/Info.tsx @@ -37,7 +37,7 @@ export function Info({ onNext }: { onNext: (infoValues: InfoValues) => void }) { placeholder="프로젝트 한 줄 설명을 적어주세요" /> - +