summaryrefslogtreecommitdiff
path: root/src-migrate/hooks
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-08-02 08:58:03 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-08-02 08:58:03 +0700
commit622b27a302ba0736984d95beb761bf6a5f48614b (patch)
tree6ba069acdc19a450b691dde3b795b9e4b0561a1a /src-migrate/hooks
parent516db9ccbaf00bfc5b668ea425aa74b9ffe820c6 (diff)
<iman> delete console log
Diffstat (limited to 'src-migrate/hooks')
-rw-r--r--src-migrate/hooks/useUtmSource.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-migrate/hooks/useUtmSource.ts b/src-migrate/hooks/useUtmSource.ts
index a72fae36..43fbdcae 100644
--- a/src-migrate/hooks/useUtmSource.ts
+++ b/src-migrate/hooks/useUtmSource.ts
@@ -7,7 +7,7 @@ const useUtmSource = () => {
const [source, setSource] = useState<string>();
useEffect(() => {
- console.log(router.pathname);
+ // console.log(router.pathname);
if (router.pathname) {
setSource(UTM_SOURCE[router.pathname as keyof typeof UTM_SOURCE]);