Polish: Add warning to notificationStore

This commit is contained in:
rcourtman
2025-12-23 12:14:08 +00:00
parent 13426d35a3
commit 4f8ed2e422
@@ -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);
},
};