diff --git a/packages/web-domains/src/home/common/apis/schema/Notification.schema.ts b/packages/web-domains/src/home/common/apis/schema/Notification.schema.ts index 4e1147bb..7e3b86c4 100644 --- a/packages/web-domains/src/home/common/apis/schema/Notification.schema.ts +++ b/packages/web-domains/src/home/common/apis/schema/Notification.schema.ts @@ -3,7 +3,12 @@ export type NotificationType = { eventType: NotificationEventType; }; -export type NotificationEventType = 'QUESTION_REGISTERED' | 'TARGET_MEMBER' | 'HAND_WAVING_REQUESTED'; +export type NotificationEventType = + | 'QUESTION_REGISTERED' + | 'TARGET_MEMBER' + | 'HAND_WAVING_REQUESTED' + | 'HAND_WAVING_REJECTED' + | 'HAND_WAVING_ACCEPTED'; export type NotificationResponseType = | { diff --git a/packages/web-domains/src/home/features/notification/containers/AlarmListContainer.tsx b/packages/web-domains/src/home/features/notification/containers/AlarmListContainer.tsx index 26b2a7c3..7f7f0ddd 100644 --- a/packages/web-domains/src/home/features/notification/containers/AlarmListContainer.tsx +++ b/packages/web-domains/src/home/features/notification/containers/AlarmListContainer.tsx @@ -64,7 +64,8 @@ export const AlarmListContainer = () => { /> ); } - + case 'HAND_WAVING_ACCEPTED': + case 'HAND_WAVING_REJECTED': case 'QUESTION_REGISTERED': case 'TARGET_MEMBER': return ;