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 ; }); });