Skip to content

Commit

Permalink
refactor: change tempalte literal to double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
poomthiti committed Apr 5, 2023
1 parent 3b2b149 commit 35eeecd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/app-fns/explorer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ export const getProposalUrl = (chainName: string) => {
pathSuffix = "proposals";
break;
case "terra2":
return `https://station.terra.money/proposal/phoenix-1`;
return "https://station.terra.money/proposal/phoenix-1";
case "terra2testnet":
return `https://station.terra.money/proposal/pisco-1`;
return "https://station.terra.money/proposal/pisco-1";
default:
break;
}
Expand Down

0 comments on commit 35eeecd

Please sign in to comment.