Skip to content

Commit

Permalink
fix ScrapGitHubReleaseTags story's tags fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
luclu7 committed Apr 13, 2024
1 parent 9d34720 commit 299a7de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/ScrapGitHubReleaseTags.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const Primary: Story = {
scrapUrl: (url: string) => {
console.log(url);
return new Promise((resolv) => {
resolv(releaseTagNameSample);
resolv(JSON.stringify(releaseTagNameSample));
});
},
onDone: (stepId) => console.log(stepId),
Expand Down

0 comments on commit 299a7de

Please sign in to comment.