Skip to content

Commit

Permalink
make requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntVal committed Mar 25, 2024
1 parent 4e55e98 commit 2ab0bac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function AbstraxionSignin(): JSX.Element {
}
urlParams.set("redirect_uri", currentUrl);
const queryString = urlParams.toString(); // Convert URLSearchParams to string
window.location.href = `https://${dashUrl}?${queryString}`;
window.location.href = `${dashUrl}?${queryString}`;
}

async function generateAndStoreTempAccount(): Promise<DirectSecp256k1HdWallet> {
Expand Down
4 changes: 2 additions & 2 deletions packages/constants/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ export const testChainInfo: ChainInfo = {

// If mainnet chain-id/network changes be sure to update here.
const DASHBOARD_URLS = {
"xion-mainnet-1": "dashboard.burnt.com",
"xion-testnet-1": "testnet-dashboard.burnt.com",
"xion-mainnet-1": "https://dashboard.burnt.com",
"xion-testnet-1": "https://testnet.dashboard.burnt.com",
};

export async function fetchConfig(rpcUrl: string): Promise<string> {
Expand Down

0 comments on commit 2ab0bac

Please sign in to comment.