Skip to content

Commit 0ffb14d

Browse files
committed
fix: remove some logs
1 parent bddd368 commit 0ffb14d

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
lines changed

src/layout/PrivateLayout.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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

src/layout/PublicLayout.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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

src/views/Auth/Signup/ConfirmEmailView.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)