From c29e974665131acddaf9f3343bc765a0d72f3a76 Mon Sep 17 00:00:00 2001 From: asdf99245 Date: Sat, 19 Aug 2023 11:49:12 +0900 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=EB=B0=A9=EB=AA=85=EB=A1=9D=20?= =?UTF-8?q?=EB=82=A0=EC=A7=9C=20iso=20string=20->=20locale=20string?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/user/[id]/guest-book/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/user/[id]/guest-book/index.tsx b/src/pages/user/[id]/guest-book/index.tsx index a370783..3130b02 100644 --- a/src/pages/user/[id]/guest-book/index.tsx +++ b/src/pages/user/[id]/guest-book/index.tsx @@ -95,7 +95,7 @@ export default function GuestBookPage({ userId }: GuestBookProps) {
{name} - {created_at} + {new Date(created_at).toLocaleDateString()}
{getIsLogin() && ( From 6bad8fbdf3618de8b94058b38d945a7f2f552d43 Mon Sep 17 00:00:00 2001 From: asdf99245 Date: Sat, 19 Aug 2023 12:40:19 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20=EB=B0=A9=EB=AA=85=EB=A1=9D=EC=9D=B4?= =?UTF-8?q?=20=EA=B8=B8=EB=95=8C=20=EB=B0=B0=EB=84=88=20=ED=85=8D=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=EA=B0=80=20=EB=84=98=EC=B9=98=EB=8A=94=20=ED=98=84?= =?UTF-8?q?=EC=83=81=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/user/guest-book/GuestBookBanner.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/user/guest-book/GuestBookBanner.tsx b/src/components/user/guest-book/GuestBookBanner.tsx index d23151c..b74d9fc 100644 --- a/src/components/user/guest-book/GuestBookBanner.tsx +++ b/src/components/user/guest-book/GuestBookBanner.tsx @@ -18,12 +18,14 @@ interface VisitLog { const Log = ({ text, name }: Pick) => { return ( -
-
- -

{text}

+
+
+ +

+ {text} +

- + {`- ${name}`}
); }; From 38a70691483a6504781b0092c8884370159f63e6 Mon Sep 17 00:00:00 2001 From: asdf99245 Date: Sat, 19 Aug 2023 12:45:09 +0900 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20=EB=B0=A9=EB=AA=85=EB=A1=9D=EC=97=90?= =?UTF-8?q?=20=EA=B8=B4=ED=85=8D=EC=8A=A4=ED=8A=B8=EA=B0=80=20=EC=9E=88?= =?UTF-8?q?=EC=9C=BC=EB=A9=B4=20=EB=B0=95=EC=8A=A4=EB=A5=BC=20=EB=84=98?= =?UTF-8?q?=EC=96=B4=EA=B0=80=EB=8A=94=20=ED=98=84=EC=83=81=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 일단 overflow 스크롤 넣음 --- src/pages/user/[id]/guest-book/index.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pages/user/[id]/guest-book/index.tsx b/src/pages/user/[id]/guest-book/index.tsx index 3130b02..da351bd 100644 --- a/src/pages/user/[id]/guest-book/index.tsx +++ b/src/pages/user/[id]/guest-book/index.tsx @@ -84,13 +84,15 @@ export default function GuestBookPage({ userId }: GuestBookProps) {
-

{text}

+

+ {text} +

{name}