+
diff --git a/src/entities/Committee/isDAOCommittee.ts b/src/entities/Committee/isDAOCommittee.ts
index 78cd5e2c2..553b319cd 100644
--- a/src/entities/Committee/isDAOCommittee.ts
+++ b/src/entities/Committee/isDAOCommittee.ts
@@ -1,4 +1,4 @@
-import { yellow } from 'colors/safe'
+import chalk from 'chalk'
import env from 'decentraland-gatsby/dist/utils/env'
import isEthereumAddress from 'validator/lib/isEthereumAddress'
@@ -9,7 +9,7 @@ export const COMMITTEE_ADDRESSES = (env('COMMITTEE_ADDRESSES', '') || '')
const committeeAddresses = new Set(COMMITTEE_ADDRESSES)
-committeeAddresses.forEach((address) => console.log('committee address:', yellow(address)))
+committeeAddresses.forEach((address) => console.log('committee address:', chalk.yellow(address)))
export default function isDAOCommittee(user?: string | null | undefined) {
if (!user) {
diff --git a/src/entities/Debug/isDebugAddress.ts b/src/entities/Debug/isDebugAddress.ts
index 2e69c3988..8bf199acf 100644
--- a/src/entities/Debug/isDebugAddress.ts
+++ b/src/entities/Debug/isDebugAddress.ts
@@ -1,10 +1,10 @@
-import { magenta } from 'colors/safe'
+import chalk from 'chalk'
import { DEBUG_ADDRESSES } from '../../constants'
const debugAddresses = new Set(DEBUG_ADDRESSES)
-debugAddresses.forEach((address) => console.log('debug address:', magenta(address)))
+debugAddresses.forEach((address) => console.log('debug address:', chalk.magenta(address)))
export default function isDebugAddress(address: string | undefined) {
return address && address.length > 0 && debugAddresses.has(address.toLowerCase())