Polish: Add warning to notificationStore

This commit is contained in:
rcourtman
2025-12-23 12:14:08 +00:00
parent 068b6ed530
commit 7130e54837
@@ -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);
},
};