File tree Expand file tree Collapse file tree 3 files changed +18
-17
lines changed
Expand file tree Collapse file tree 3 files changed +18
-17
lines changed Original file line number Diff line number Diff line change @@ -76,14 +76,14 @@ const PrivateLayout: FunctionComponent<PropsWithChildren> = ({ children }) => {
7676 if ( sideBarVisible ) setSideBarVisible ( false ) ; // Don't re-render Layout when SideBar is already closed
7777 } ;
7878
79- console . log (
80- 'Render using PrivateLayout, onMobile:' ,
81- onMobile ,
82- 'sidebarOpen:' ,
83- sidebarOpen ,
84- 'sidebarVariant:' ,
85- sidebarVariant
86- ) ;
79+ // console.log(
80+ // 'Render using PrivateLayout, onMobile:',
81+ // onMobile,
82+ // 'sidebarOpen:',
83+ // sidebarOpen,
84+ // 'sidebarVariant:',
85+ // sidebarVariant
86+ // );
8787
8888 return (
8989 < Stack
Original file line number Diff line number Diff line change @@ -84,14 +84,14 @@ const PublicLayout: FunctionComponent<PropsWithChildren> = ({ children }) => {
8484 if ( sideBarVisible ) setSideBarVisible ( false ) ; // Don't re-render Layout when SideBar is already closed
8585 } , [ sideBarVisible ] ) ;
8686
87- console . log (
88- 'Render using PublicLayout, onMobile:' ,
89- onMobile ,
90- 'sidebarOpen:' ,
91- sidebarOpen ,
92- 'sidebarVariant:' ,
93- sidebarVariant
94- ) ;
87+ // console.log(
88+ // 'Render using PublicLayout, onMobile:',
89+ // onMobile,
90+ // 'sidebarOpen:',
91+ // sidebarOpen,
92+ // 'sidebarVariant:',
93+ // sidebarVariant
94+ // );
9595
9696 return (
9797 < Stack
Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ const ConfirmEmailView = () => {
1717 function useQuery ( ) {
1818 return new URLSearchParams ( useLocation ( ) . search ) ;
1919 }
20+
2021 const token = useQuery ( ) . get ( TOKEN_QUERY_PARAM ) || '' ;
21- console . log ( 'token:' , token ) ;
22+ console . log ( 'ConfirmEmailView() - token:' , token ) ;
2223
2324 useEffect ( ( ) => {
2425 // Component Mount
You can’t perform that action at this time.
0 commit comments