Skip to content

Commit

Permalink
Merge pull request #32 from JetonDAO/fix-base-url-
Browse files Browse the repository at this point in the history
Read base url hardcoded for mizu
  • Loading branch information
farzaamam authored Sep 24, 2024
2 parents 652a61c + 1eb1fef commit bd860bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/WalletProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { PropsWithChildren } from "react";
export const WalletProvider = ({ children }: PropsWithChildren) => {
const baseApiUrl = process.env.BASE_URL;

//TODO network setup
//TODO network setup and base_url
return (
<AptosWalletAdapterProvider
autoConnect={true}
Expand All @@ -17,7 +17,7 @@ export const WalletProvider = ({ children }: PropsWithChildren) => {
network: Network.TESTNET,
aptosConnectDappId: "b76e8b1d-3fe8-442a-b254-47b2dcff3f2a",
mizuwallet: {
manifestURL: `${baseApiUrl}+/mizuwallet-connect-manifest.json`,
manifestURL: "https://dev.jeton.pages.dev/mizuwallet-connect-manifest.json",
},
}}
onError={(error) => {
Expand Down

0 comments on commit bd860bd

Please sign in to comment.