Browse Source

Fix story using the wrong prop name

pull/2438/head
Gabe Kangas 3 years ago
parent
commit
9317efc253
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 4
      web/components/ui/NotifyReminderPopup/NotifyReminderPopup.stories.tsx

4
web/components/ui/NotifyReminderPopup/NotifyReminderPopup.stories.tsx

@ -33,7 +33,7 @@ const Template: ComponentStory<typeof NotifyReminderPopup> = args => <Example {. @@ -33,7 +33,7 @@ const Template: ComponentStory<typeof NotifyReminderPopup> = args => <Example {.
export const Active = Template.bind({});
Active.args = {
visible: true,
open: true,
notificationClicked: () => {
alert('notification clicked');
},
@ -44,5 +44,5 @@ Active.args = { @@ -44,5 +44,5 @@ Active.args = {
export const InActive = Template.bind({});
InActive.args = {
visible: false,
open: false,
};

Loading…
Cancel
Save