Skip to content
This repository has been archived by the owner on May 4, 2023. It is now read-only.

Commit

Permalink
fix: account for missing id on netlify
Browse files Browse the repository at this point in the history
> Error: Variable "$id" of required type "Int!" was not provided.
  • Loading branch information
virtuoushub committed Apr 1, 2022
1 parent 54b46eb commit c8cbea2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion web/src/pages/ArticlePage/ArticlePage.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@ export const generated = (arg) => {
return <ArticlePage {...arg} />
}

export default { title: 'Pages/ArticlePage' }
export default {
title: 'Pages/ArticlePage',
component: ArticlePage,
args: {
id: 1,
},
}

0 comments on commit c8cbea2

Please sign in to comment.