diff --git a/src/components/QuestDetailsWrapper/PlayStreakQuest.stories.tsx b/src/components/QuestDetailsWrapper/PlayStreakQuest.stories.tsx index 1ed4eeb..a5d0970 100644 --- a/src/components/QuestDetailsWrapper/PlayStreakQuest.stories.tsx +++ b/src/components/QuestDetailsWrapper/PlayStreakQuest.stories.tsx @@ -88,6 +88,7 @@ const mockUserPlayStreak: UserPlayStreak = { const mockProps: QuestDetailsWrapperProps = { className: styles.root, selectedQuestId: 1, + gameTitle: 'Game Title', onRewardClaimed: () => { alert('This is when we show the claim success modal') }, @@ -170,6 +171,7 @@ export const QuestPageNotSignedIn: Story = { export const QuestPageSignedIn: Story = { args: { ...mockProps, + gameTitle: 'Game Title', isQuestsPage: true, isSignedIn: true }