From ce1daef9f3b7f5b884ca8eede8b33e49aafc8e4f Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Wed, 15 Sep 2021 11:04:42 -0500 Subject: [PATCH] Fix `` stories --- .../conversation/UniversalTimerNotification.stories.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/components/conversation/UniversalTimerNotification.stories.tsx b/ts/components/conversation/UniversalTimerNotification.stories.tsx index b79fc63f14..6dc7ea528d 100644 --- a/ts/components/conversation/UniversalTimerNotification.stories.tsx +++ b/ts/components/conversation/UniversalTimerNotification.stories.tsx @@ -14,8 +14,8 @@ const story = storiesOf('Components/UniversalTimerNotification', module); const i18n = setupI18n('en', enMessages); -EXPIRE_TIMERS.forEach(({ value, label }) => { +EXPIRE_TIMERS.forEach(({ value: ms, label }) => { story.add(`Initial value: ${label}`, () => { - return ; + return ; }); });