Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/(service)/(my)/notification/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use client';

import NotificationIcon from 'public/images/notification.svg';
import { useState } from 'react';

import type { GetMemberNotificationsTopicTypeEnum } from '@/api/openapi/api/notification-api';
Expand All @@ -12,7 +13,6 @@ import {
useGetNotificationCategories,
useReadNotifications,
} from '@/hooks/queries/notification-api';
import NotificationIcon from 'public/images/notification.svg';

const READ_STATUS_OPTIONS = [
{ value: 'all', label: '상태 전체' },
Expand Down Expand Up @@ -86,7 +86,7 @@ export default function NotificationPage() {
className="font-designer-13r h-[32px]"
onClick={handleMarkAllAsRead}
>
모든 읽음 처리
모두 읽음 처리
</Button>

<div className="w-[120px]">
Expand Down
Loading