diff --git a/package.json b/package.json
index 24d952f..32e8002 100644
--- a/package.json
+++ b/package.json
@@ -11,7 +11,6 @@
"build": "next build",
"create-env": "printenv > .env",
"serve": "yarn build && npm i -g http-server && http-server ./.next",
- "export": "yarn build && next export -o _static",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
diff --git a/src/config-global.ts b/src/config-global.ts
index 18414af..c358c8a 100644
--- a/src/config-global.ts
+++ b/src/config-global.ts
@@ -1,5 +1,3 @@
-import { paths } from 'src/routes/paths'
-
import { Network } from './types/networks'
// ----------------------------------------------------------------------
@@ -31,7 +29,7 @@ export const handleVercelFreePlanTimeOut =
export const UI_API_URL = process.env.NEXT_PUBLIC_UI_URL
export const USE_MOCK = (process.env.NEXT_PUBLIC_USE_MOCK || 'true') === 'true'
export const ALLOWED_ORIGINS = process.env.NEXT_PUBLIC_ALLOWED_ORIGINS || '*'
-export const fromICP = (process.env.NEXT_PUBLIC_FROM_ICP || 'false') === 'true'
+export const fromICP = (process.env.NEXT_PUBLIC_FROM_ICP || 'true') === 'true'
export const RECAPTCHA_SITE_KEY = process.env.NEXT_PUBLIC_RECAPTCHA_SITE_KEY || ''
export const NFT_IMAGE_REPOSITORY = (
process.env.NEXT_PUBLIC_NFT_IMAGE_REPOSITORY || 'gcp'
@@ -39,8 +37,7 @@ export const NFT_IMAGE_REPOSITORY = (
// ----------------------------------------------------------------------
// internal
-export const DOMAIN_TO_USE_WITH_ICP = fromICP ? 'https://chatterpay.net' : ''
-export const PATH_AFTER_LOGIN = `${DOMAIN_TO_USE_WITH_ICP}$/dashboard`
+export const PATH_AFTER_LOGIN = `/dashboard`
export const BOT_WAPP_URL =
'https://api.whatsapp.com/send/?phone=5491164629653&text=MESSAGE&type=phone_number&app_absent=0'
diff --git a/src/layouts/common/login-button.tsx b/src/layouts/common/login-button.tsx
index 10295b8..6035e77 100644
--- a/src/layouts/common/login-button.tsx
+++ b/src/layouts/common/login-button.tsx
@@ -5,6 +5,7 @@ import { paths } from 'src/routes/paths'
import { RouterLink } from 'src/routes/components'
import { useTranslate } from 'src/locales'
+import { fromICP } from 'src/config-global'
// ----------------------------------------------------------------------
@@ -18,18 +19,19 @@ export default function LoginButton({ sx }: Props) {
return (
<>
-