From 9317efc253dee360591da643195f567e966f0aa8 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 12 Dec 2022 10:30:13 -0800 Subject: [PATCH] Fix story using the wrong prop name --- .../ui/NotifyReminderPopup/NotifyReminderPopup.stories.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.stories.tsx b/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.stories.tsx index e0bafa37f..ba2ce94ed 100644 --- a/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.stories.tsx +++ b/web/components/ui/NotifyReminderPopup/NotifyReminderPopup.stories.tsx @@ -33,7 +33,7 @@ const Template: ComponentStory = args => { alert('notification clicked'); }, @@ -44,5 +44,5 @@ Active.args = { export const InActive = Template.bind({}); InActive.args = { - visible: false, + open: false, };