Skip to content

Commit

Permalink
fix(app): adds mainnet rpc environment variable to genericplatform (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
farque65 authored Nov 10, 2022
1 parent 8176e76 commit bef8928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/GenericPlatform.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export type PlatformProps = {
};

const iamUrl = process.env.NEXT_PUBLIC_PASSPORT_IAM_URL || "";
const rpcUrl = process.env.NEXT_PUBLIC_RPC_URL;
const rpcUrl = process.env.NEXT_PUBLIC_PASSPORT_MAINNET_RPC_URL;

function generateUID(length: number) {
return window
Expand Down

0 comments on commit bef8928

Please sign in to comment.