Skip to content

Commit d68661c

Browse files
committed
chore(dashboard): env config for tvm
1 parent a7c35b0 commit d68661c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/apps/app-dashboard/src/components/shared/LandingPartners.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React from 'react';
22
import styles from './LandingPartners.module.css';
3+
import { env } from '@/config/env';
34

45
const logos = [
56
{
@@ -88,7 +89,7 @@ const LandingPartners: React.FC = () => {
8889
className="!text-gray-600 hover:!text-orange-500 transition-colors !no-underline"
8990
style={{ textDecoration: 'none' }}
9091
>
91-
$250M+ Managed
92+
${env.VITE_LIT_TOTAL_MANAGED} Managed
9293
</a>
9394
<span className="mx-2"></span>
9495
Works With All Crypto

packages/apps/app-dashboard/src/config/env.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export const env = createEnv({
3535
VITE_DOMAIN: z.string().optional(),
3636
VITE_ENV: z.enum(['development', 'staging', 'production']).default('staging').optional(),
3737
VITE_VINCENT_YIELD_APPID: z.coerce.number(),
38+
VITE_LIT_TOTAL_MANAGED: z.string().default('340M+'),
3839
VITE_DASHBOARD_URL: z.string(),
3940
VITE_VINCENT_YIELD_MINIMUM_DEPOSIT: z.coerce.number().default(50),
4041
},

0 commit comments

Comments
 (0)