Skip to content

Commit cbbc059

Browse files
committed
remove temp logs
1 parent c16287f commit cbbc059

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/features/decoder/components/token-decoder.component.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,27 +68,21 @@ export const TokenDecoderComponent: React.FC<TokenDecoderComponentProps> = ({
6868
}
6969

7070
const newUrl = `${currentUrl}#${SupportedTokenHashParamValues.TOKEN}=${token}`;
71-
console.log("Logging hash length before replacing///", token.length)
7271
window.location.replace(newUrl);
73-
7472
return;
7573
}
7674

7775
if (!hash.includes("=")) {
78-
console.log("hash not includes =")
7976
return;
8077
}
8178

8279

8380

8481
const hashParams = new URLSearchParams(hash);
85-
console.log("Hash param keys!!!", hashParams)
8682
Object.values(SupportedTokenHashParamValues).forEach((hashParamKey) => {
8783
const token = hashParams.get(hashParamKey);
8884

8985
if (token) {
90-
console.count("handling jwt change")
91-
console.log("The token is:///", token)
9286
handleJwtChange$(token);
9387
}
9488
});

0 commit comments

Comments
 (0)