Skip to content

Commit

Permalink
Fixed URL for the 1st launch
Browse files Browse the repository at this point in the history
  • Loading branch information
pgolovkin committed Jul 6, 2022
1 parent 1a1bfea commit b164932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function App() {
const [currentNetwork, setCurrentNetwork] = useState<string>(
(Object.keys(allChains).includes(location) && location) ||
(localStorageNetwork && localStorageNetwork.toLowerCase()) ||
Object.keys(allChains)[0]
Object.keys(allChains)[0] || "bifrost"
);

const specs = allChains[currentNetwork];
Expand Down

0 comments on commit b164932

Please sign in to comment.