From 4f8ed2e4221c450cfceb24f708dab48b111ffecf Mon Sep 17 00:00:00 2001 From: rcourtman Date: Tue, 23 Dec 2025 12:14:08 +0000 Subject: [PATCH] Polish: Add warning to notificationStore --- frontend-modern/src/stores/notifications.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend-modern/src/stores/notifications.ts b/frontend-modern/src/stores/notifications.ts index db7e7bd6e..dfd4bc4d4 100644 --- a/frontend-modern/src/stores/notifications.ts +++ b/frontend-modern/src/stores/notifications.ts @@ -18,4 +18,8 @@ export const notificationStore = { info: (message: string, duration: number = DEFAULT_DURATIONS.info) => { return showToast('info', message, undefined, duration); }, + + warning: (message: string, duration: number = DEFAULT_DURATIONS.info) => { + return showToast('warning', message, undefined, duration); + }, };