From ef32f96412c034b865678901d1ee1ebc89806a67 Mon Sep 17 00:00:00 2001 From: JJongBin Date: Tue, 6 Dec 2022 15:05:29 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20#85=201:1=20=EC=B1=84=ED=8C=85=EC=9D=84?= =?UTF-8?q?=20=EC=9C=84=ED=95=9C=20=EC=A0=84=EC=97=AD=EC=83=81=ED=83=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/store/atom/chatting.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/store/atom/chatting.ts b/frontend/src/store/atom/chatting.ts index 02c7937..5b308f3 100644 --- a/frontend/src/store/atom/chatting.ts +++ b/frontend/src/store/atom/chatting.ts @@ -1,8 +1,8 @@ import { atom } from 'recoil'; import { v1 } from 'uuid'; -export const chattingState = atom({ +export const chattingState = atom({ key: `chattingState/${v1()}`, - default: '', + default: { id: '', nickname: '' }, });