Skip to content

Commit

Permalink
change address
Browse files Browse the repository at this point in the history
  • Loading branch information
happyhackerbird committed Aug 6, 2024
1 parent 22d2a23 commit f28849d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/civic_sign_frontend_demo/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function GatewayStatusLookup({ children, isLoggedIn }: { children: React.ReactNo
const retrievePass = () => {
const currentUrl = window.location.href;
const encodedRedirectUri = encodeURIComponent(currentUrl);
const passPortalUrl = `https://icp-pass-portal-l79vhikf3-civic.vercel.app?redirect_uri=${encodedRedirectUri}`;
const passPortalUrl = `https://icp-getpass.civic.com?redirect_uri=${encodedRedirectUri}`;
window.location.href = passPortalUrl;
};

Expand Down Expand Up @@ -82,7 +82,8 @@ function App() {
const [principal, setPrincipal] = useState<Principal | undefined>(undefined);
const [credentialService, setCredentialService] = useState<CredentialService>();
const icpWallet = useMemo(() => ({ principal: principal?.toText() ?? undefined }), [principal]);
const gatekeeperNetwork = "tunQheuPpHhjjsbrUDp4rikqYez9UXv4SXLRHf9Kzsv";
const gatekeeperNetwork = "tgnuXXNMDLK8dy7Xm1TdeGyc95MDym4bvAQCwcW21Bf";


const [urlCode, setUrlCode] = useState<string | null>(null);

Expand Down

0 comments on commit f28849d

Please sign in to comment.