Skip to content

Commit

Permalink
fix: update test site subdomain to testnet (#771)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Dec 17, 2023
1 parent 033afaa commit e1729ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphql/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export function formatProposal(proposal) {
flagged: proposal.spaceFlagged,
hibernated: proposal.spaceHibernated
});
const networkStr = network === 'testnet' ? 'demo.' : '';
const networkStr = network === 'testnet' ? 'testnet.' : '';
proposal.link = `https://${networkStr}snapshot.org/#/${proposal.space.id}/proposal/${proposal.id}`;
proposal.strategies = proposal.strategies.map(strategy => ({
...strategy,
Expand Down

0 comments on commit e1729ac

Please sign in to comment.