fix(clock-web): add toast export alias for compatibility

The alarms page imports 'toast' but the store exported 'toasts'.
Add alias to support both import styles.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-23 01:23:58 +01:00
parent 6d65f3b833
commit 2164d4afa0

View file

@ -42,3 +42,6 @@ function createToastStore() {
}
export const toasts = createToastStore();
// Alias for compatibility with different import styles
export const toast = toasts;