Skip to content

Commit

Permalink
enable mumbai only on env var
Browse files Browse the repository at this point in the history
  • Loading branch information
EnzoVezzaro committed Oct 26, 2023
1 parent 2c81f54 commit 8a37ca6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/UploaderConnection/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ const Template: StoryFn<typeof UploaderConnection> = (args) => {
getDefaultConfig({
appName: 'Ocean Uploader UI',
infuraId: process.env.PUBLIC_INFURA_PROJECT_ID,
chains: [polygon, polygonMumbai],
chains: process.env.ENABLE_DEVELOPMENT
? [polygon, polygonMumbai]
: [polygon],
walletConnectProjectId: 'Your wallet connect project ID'
})
)
Expand Down

0 comments on commit 8a37ca6

Please sign in to comment.