Skip to content

Commit ceac06b

Browse files
committed
chore: remove debug logs
1 parent 216a6c4 commit ceac06b

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

apps/cow-fi/app/providers.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use client'
22

3-
import { Suspense, useEffect, useState } from 'react'
3+
import { Suspense, useState } from 'react'
44

55
import { CowAnalyticsProvider, initGtm } from '@cowprotocol/analytics'
66

@@ -14,15 +14,10 @@ import { ThemeProvider } from '../theme'
1414

1515
import { WithLDProvider } from '@/components/WithLDProvider'
1616
import GlobalStyles from '@/styles/global.styles'
17-
import { environmentName } from '@/util/environment'
1817

1918
const cowAnalytics = initGtm()
2019

2120
export function Providers({ children }: { children: React.ReactNode }): React.ReactNode {
22-
useEffect(() => {
23-
console.info('[cow-fi][environment]', environmentName ?? 'unknown')
24-
}, [])
25-
2621
return (
2722
<Suspense>
2823
<CacheProvider>

apps/explorer/src/explorer/index.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ import { createRoot } from 'react-dom/client'
66

77
import ExplorerApp from './ExplorerApp'
88

9-
import { environmentName } from '../utils/env'
10-
11-
console.info('[explorer][environment]', environmentName ?? 'unknown')
12-
139
const container = document.getElementById('root')
1410
if (container !== null) {
1511
const root = createRoot(container)

0 commit comments

Comments
 (0)