Skip to content

Commit

Permalink
chore: trigger fresh build after cleanup
Browse files Browse the repository at this point in the history
add fake mainnet appId
  • Loading branch information
PhearZero committed Dec 11, 2023
1 parent a9273e1 commit 63eacfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/build-a-bull/src/features/rounds/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ const VotingRounds = () => {
// Redirect to live round
const navigate = useNavigate()
// TODO: add production voting round
const appId = NETWORK === 'testnet' ? 499163907 : 'must be added'
if (import.meta.env.VITE_ENVIRONMENT !== 'local' && typeof appId === 'number') {
const appId = NETWORK === 'testnet' ? 499163907 : 1158913461
if (import.meta.env.VITE_ENVIRONMENT !== 'local') {
navigate(`/vote/${appId}`)
}

Expand Down

0 comments on commit 63eacfe

Please sign in to comment.