Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lmuntaner committed Nov 15, 2024
1 parent 41b4f8e commit b3dd2c4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
6 changes: 0 additions & 6 deletions src/frontend/src/lib/constants/app.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@ export const INTERNET_IDENTITY_ORIGIN = LOCAL
? `http://${INTERNET_IDENTITY_CANISTER_ID}.localhost:4943`
: 'https://identity.ic0.app';

console.log(
'in da app.constants.ts',
LOCAL,
import.meta.env.VITE_LOCAL_POUH_ISSUER_CANISTER_ID,
process.env.VITE_LOCAL_POUH_ISSUER_CANISTER_ID
);
export const POUH_ISSUER_CANISTER_ID = LOCAL
? import.meta.env.VITE_LOCAL_POUH_ISSUER_CANISTER_ID
: STAGING
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,9 @@ export const requestPouhCredential = ({
}: {
identity: Identity;
}): Promise<ResultSuccess> => {
console.log('in da requestPouhCredential');
const credentialSubject = identity.getPrincipal();
const { auth: authI18n } = get(i18n);
return new Promise((resolve, reject) => {
console.log(import.meta.env.VITE_LOCAL_POUH_ISSUER_CANISTER_ID);
console.log(POUH_ISSUER_CANISTER_ID);
console.log(POUH_ISSUER_ORIGIN);
const issuerCanisterId = nonNullish(POUH_ISSUER_CANISTER_ID)
? Principal.fromText(POUH_ISSUER_CANISTER_ID)
: undefined;
Expand Down

0 comments on commit b3dd2c4

Please sign in to comment.