From 94db7ed91e132acc0a6c9b9122e378bdde6dc151 Mon Sep 17 00:00:00 2001 From: Jiwoo Ahn Date: Sat, 18 May 2024 22:23:54 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Style:=20spacing=20on=20my=20pag?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aeye/app/(nav)/my/profileMenu.tsx | 80 +++++++++++++++++-------------- 1 file changed, 45 insertions(+), 35 deletions(-) diff --git a/aeye/app/(nav)/my/profileMenu.tsx b/aeye/app/(nav)/my/profileMenu.tsx index ab7af8e..7f69d11 100644 --- a/aeye/app/(nav)/my/profileMenu.tsx +++ b/aeye/app/(nav)/my/profileMenu.tsx @@ -8,6 +8,7 @@ import { Typography, TextField, Box, + Stack, } from "@mui/material"; import fetchWithInterception from "@/app/fetchWrapper"; import KakaoIcon from "@/app/kakao"; @@ -29,42 +30,51 @@ export default function ProfileMenu() { return ( - - Account Linking Information - - - {member?.socialLogin === "GOOGLE" ? : } - {member?.socialLogin} - - - - Update Phone Number - - - setPhone(e.target.value)} - /> - - + - - - + 계정 연결 정보 + + + {member?.socialLogin === "GOOGLE" ? : } + {member?.socialLogin} + + + + 전화번호 설정 + + + setPhone(e.target.value)} + /> + + + + + + ); }