File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
src/features/decoder/components Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff 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 } ) ;
You can’t perform that action at this time.
0 commit comments