Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.

Commit 61e3662

Browse files
committed
fix: resolve TypeScript build errors in landing page
- Exclude IC-related files from landing page tsconfig (unused dependencies) - Remove unused Lock import from LandingPage.tsx - Landing page should be buildable without IC dependencies
1 parent d7bb5f5 commit 61e3662

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

src/btc_vault_landing/src/LandingPage.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { ThemeSwitcher } from "@/components/theme-switcher";
44
import { getExternalLinks } from "@/lib/config";
55
import {
66
Shield,
7-
Lock,
87
Zap,
98
TrendingUp,
109
DollarSign,

src/btc_vault_landing/tsconfig.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,12 @@
2626
"@/*": ["./src/*"]
2727
}
2828
},
29-
"include": ["src"]
29+
"include": ["src"],
30+
"exclude": [
31+
"src/contexts/siwb-auth-context.tsx",
32+
"src/declarations",
33+
"src/actors",
34+
"src/services/auth-service.ts",
35+
"src/types/vault.ts"
36+
]
3037
}

0 commit comments

Comments
 (0)