File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ const enhancer = compose(
121121function getDebugSessionKey () {
122122 // You can write custom logic here!
123123 // By default we try to read the key from ?debug_session=<key> in the address bar
124- const matches = window .location .href .match (/ [?&] debug_session=([^ &] + )\b / );
124+ const matches = window .location .href .match (/ [?&] debug_session=([^ &# ] + )\b / );
125125 return (matches && matches .length > 0 )? matches[1 ] : null ;
126126}
127127
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const enhancer = compose(
99 DevTools . instrument ( ) ,
1010 persistState (
1111 window . location . href . match (
12- / [ ? & ] d e b u g _ s e s s i o n = ( [ ^ & ] + ) \b /
12+ / [ ? & ] d e b u g _ s e s s i o n = ( [ ^ & # ] + ) \b /
1313 )
1414 )
1515) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const enhancer = compose(
77 DevTools . instrument ( ) ,
88 persistState (
99 window . location . href . match (
10- / [ ? & ] d e b u g _ s e s s i o n = ( [ ^ & ] + ) \b /
10+ / [ ? & ] d e b u g _ s e s s i o n = ( [ ^ & # ] + ) \b /
1111 )
1212 )
1313) ;
You can’t perform that action at this time.
0 commit comments