diff --git a/src/hook/useLogin.ts b/src/hook/useLogin.ts
index 468813b..88d5f6d 100644
--- a/src/hook/useLogin.ts
+++ b/src/hook/useLogin.ts
@@ -15,7 +15,7 @@ const useLogin = () => {
const onSuccess = async (data: UserLoginType) => {
const { accessToken } = data.data;
- const cookieOptions = { path: '/', maxAge: 600000 * 15 };
+ const cookieOptions = { path: '/', maxAge: 300 };
// const token = await getTokenHandler();
// fcmpost({ fcmToken: token });
setCookie('token', accessToken, cookieOptions);
diff --git a/src/pages/mypage/index.tsx b/src/pages/mypage/index.tsx
index bf68cb9..ab9eb60 100644
--- a/src/pages/mypage/index.tsx
+++ b/src/pages/mypage/index.tsx
@@ -15,7 +15,6 @@ const MyPage = () => {
const [successModal, setSuccessModal] = useState(false);
const logout = useLoggedOut();
const handleLogout = () => {
- console.log('Logged out');
setModalVisible(false);
setSuccessModal(true);
@@ -28,7 +27,7 @@ const MyPage = () => {
const handleCancel = () => {
setModalVisible(false);
};
- console.log(member.imageUrl);
+
return (
@@ -60,7 +59,7 @@ const MyPage = () => {
-
+
프로필 수정
diff --git a/src/pages/mypage/notice/index.tsx b/src/pages/mypage/notice/index.tsx
index 68250ac..e29323d 100644
--- a/src/pages/mypage/notice/index.tsx
+++ b/src/pages/mypage/notice/index.tsx
@@ -23,7 +23,7 @@ const NoticePage = () => {
onClick={() => toggleNotice('notice')}>
- [안내] 5/13 (월) 02~03 커뮤니티 서비스 점검
+ [안내] 5/20 (월) 02~03 커뮤니티 서비스 점검
{
/>
- 2024. 00. 00
+ 2024. 05. 18
{openNotice === 'notice' && (
@@ -46,7 +46,7 @@ const NoticePage = () => {
Offispace 커뮤니티 서비스팀입니다.
- 5월 13일 (월요일) 새벽 2시부터 3시까지 (총 1시간 예상)
+ 5월 20일 (월요일) 새벽 2시부터 3시까지 (총 1시간 예상)
전체 커뮤니티 서비스 점검이 진행됩니다.
@@ -71,7 +71,7 @@ const NoticePage = () => {
onClick={() => toggleNotice('update1')}>
- [업데이트 내역] 1.0.2 업데이트
+ [업데이트 내역] 1.0.3 업데이트
{
/>
- 2024. 00. 00
+ 2024. 05. 15
{openNotice === 'update1' && (
@@ -93,7 +93,7 @@ const NoticePage = () => {
Offispace 서비스팀입니다.
- 4월 2일 이루어진 1.0.2 업데이트 사항을 알려드립니다.
+ 5월 2일 이루어진 1.0.3 업데이트 사항을 알려드립니다.
1. 알림 센터
@@ -115,7 +115,7 @@ const NoticePage = () => {
onClick={() => toggleNotice('update2')}>
- [업데이트 내역] 1.0.3 업데이트
+ [업데이트 내역] 1.0.2 업데이트
{
/>
- 2024. 00. 00
+ 2024. 04. 12
{openNotice === 'update2' && (
@@ -138,7 +138,7 @@ const NoticePage = () => {
Offispace 서비스팀입니다.
- 5월 12일 앱 사용성 개선 및 버그 수정을 위해 1.0.3 업데이트가 있었습니다.
+ 4월 12일 앱 사용성 개선 및 버그 수정을 위해 1.0.2 업데이트가 있었습니다.
감사합니다.
diff --git a/tailwind.config.ts b/tailwind.config.ts
index 0999748..f66972c 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -8,8 +8,8 @@ const config: Config = {
],
theme: {
screens: {
- xs: { min: ' 350px', max: '400px' },
- sm: { min: '401p', max: '551px' },
+ xs: { min: ' 350px', max: '380px' },
+ sm: { min: '381p', max: '551px' },
md: { min: '552px' }
// ...
},