diff --git a/src/pages/mypage/account/index.tsx b/src/pages/mypage/account/index.tsx
index e8773c7..9f9e04c 100644
--- a/src/pages/mypage/account/index.tsx
+++ b/src/pages/mypage/account/index.tsx
@@ -1,9 +1,11 @@
import Header from '@/components/organisms/Header';
+import { useGetMe } from '@/hooks/queries/mypage';
import useLogout from '@/hooks/useLogout';
import { type NextPage } from 'next';
const FriendsListPage: NextPage = () => {
const logout = useLogout();
+ const data = useGetMe();
return (
@@ -11,6 +13,12 @@ const FriendsListPage: NextPage = () => {
+
+
연결된계정
+
+ {data.kakaoEmail ?? data.googleEmail ?? ''}
+
+