We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a10bc2 commit acdb533Copy full SHA for acdb533
src/features/decoder/components/token-decoder.component.tsx
@@ -75,15 +75,20 @@ export const TokenDecoderComponent: React.FC<TokenDecoderComponentProps> = ({
75
}
76
77
if (!hash.includes("=")) {
78
+ console.log("hash not includes =")
79
return;
80
81
- const hashParams = new URLSearchParams(hash);
82
+
83
84
+ const hashParams = new URLSearchParams(hash);
85
+ console.log("Hash param keys!!!", hashParams)
86
Object.values(SupportedTokenHashParamValues).forEach((hashParamKey) => {
87
const token = hashParams.get(hashParamKey);
88
89
if (token) {
90
+ console.count("handling jwt change")
91
+ console.log("The token is:///", token)
92
handleJwtChange$(token);
93
94
});
0 commit comments