From b7ce71651e60e88480d98880337acaf3ea904ce2 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Fri, 25 Jul 2025 15:33:41 +0800 Subject: [PATCH] remove snack timer as they throw off visual tests --- next-ui/src/fragments/fragment/SnackQueue.stories.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/next-ui/src/fragments/fragment/SnackQueue.stories.ts b/next-ui/src/fragments/fragment/SnackQueue.stories.ts index 026e346e..034a9e6a 100644 --- a/next-ui/src/fragments/fragment/SnackQueue.stories.ts +++ b/next-ui/src/fragments/fragment/SnackQueue.stories.ts @@ -25,7 +25,7 @@ export const Default: Story = { args: {}, play: () => { const messagesStore = useMessagesStore() - messagesStore.messages = [{ text: 'Default notification' }] + messagesStore.messages = [{ text: 'Default notification', timer: false }] }, } @@ -51,6 +51,7 @@ export const Success: Story = { { text: 'Success', color: 'success', + timer: false, }, ] }, @@ -64,6 +65,7 @@ export const Warning: Story = { { text: 'Warning', color: 'warning', + timer: false, }, ] }, @@ -77,6 +79,7 @@ export const Error: Story = { { text: 'Error', color: 'error', + timer: false, }, ] }, @@ -90,6 +93,7 @@ export const Info: Story = { { text: 'Info', color: 'info', + timer: false, }, ] },