Skip to content

Commit bafe5da

Browse files
authored
feat: change theme of Boutique to default light (#1952)
change theme of Boutique to default light
1 parent e2a08e5 commit bafe5da

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const API_BASE_URL =
22
import.meta.env.VITE_API_BASE_URL || 'http://localhost:3004'
33
export 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'

packages/boutique/frontend/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

packages/wallet/frontend/src/pages/auth/verify/[token].tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)