File tree Expand file tree Collapse file tree
wallet/frontend/src/pages/auth/verify Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export const API_BASE_URL =
22 import . meta. env . VITE_API_BASE_URL || 'http://localhost:3004'
33export const IMAGES_URL = API_BASE_URL + '/images/'
4- export const THEME = import . meta. env . THEME || 'dark '
4+ export const THEME = import . meta. env . THEME || 'light '
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export default defineConfig({
1111 // Read the theme from the environment variable
1212 return html . replace (
1313 '<html class="' ,
14- `<html class="${ process . env . VITE_THEME ?? 'dark ' } `
14+ `<html class="${ process . env . VITE_THEME ?? 'light ' } `
1515 )
1616 }
1717 }
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const VerifyEmailPage: NextPageWithLayout<VerifyEmailPageProps> = ({
2727 < >
2828 < h2 className = "mb-10 mt-10 px-2 text-center text-xl font-semibold text-green dark:text-teal-neon" >
2929 Your email has been verified. Continue to login to use Interledger
30- { FEATURES_ENABLED ? 'Wallet' : 'Test Wallet' } .
30+ { FEATURES_ENABLED ? ' Wallet' : ' Test Wallet' } .
3131 </ h2 >
3232 < Button intent = "primary" aria-label = "login" href = "/auth/login" >
3333 Login to your account
You can’t perform that action at this time.
0 commit comments