This commit is contained in:
focp212@naver.com
2025-11-04 17:03:26 +09:00
parent b19334d08c
commit c662f41ea0
3 changed files with 1 additions and 8 deletions

View File

@@ -13,12 +13,10 @@ import { AlarmRoutes } from './alarm-routes';
export interface AlarmListProps {
appNotificationCategory: string;
appNotificationCategories: Array<any>;
};
export const AlarmList = ({
appNotificationCategory,
appNotificationCategories
appNotificationCategory
}: AlarmListProps) => {
const { navigate } = useNavigate();
const { t } = useTranslation();
@@ -110,7 +108,6 @@ export const AlarmList = ({
appNotificationTitle={ resultList[i]?.appNotificationTitle }
appNotificationContent={ resultList[i]?.appNotificationContent }
appNotificationLink={ resultList[i]?.appNotificationLink }
appNotificationCategories={ appNotificationCategories }
setAlarmRoutesOn={ setAlarmRoutesOn }
setAlarmOptions={ setAlarmOptions }
></AlarmItem>