From 41c090191512f24bdf5fe775cb93e8ffc2393f4c Mon Sep 17 00:00:00 2001 From: Yeongi Park Date: Tue, 6 Aug 2024 09:23:00 +0900 Subject: [PATCH] =?UTF-8?q?chore=20:=20cd=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?pr?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/login.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/login.jsx b/src/pages/login.jsx index d5cdb21..9548327 100644 --- a/src/pages/login.jsx +++ b/src/pages/login.jsx @@ -6,8 +6,8 @@ import { useUserInfo } from "../store/useUserInfo"; import AlarmDialog from "../styles/AlarmDialog"; function Login() { - const [email, setEmail] = useState("dusrl123@naver.com"); - const [password, setPassword] = useState("password123"); + const [email, setEmail] = useState(""); + const [password, setPassword] = useState(""); //유저정보를 로컬에 담아 사용하기 위해 Zustand에 유저정보를 저장 const setUser = useUserInfo((state) => state.setUser);