From bb386772538bcb83750533dc11fd9559c7ab376a Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Thu, 24 Apr 2025 08:37:57 +0530 Subject: [PATCH] fix lint errors --- apps/web/src/app/(home)/_components/StackArchitech.tsx | 3 +-- bun.lock | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/web/src/app/(home)/_components/StackArchitech.tsx b/apps/web/src/app/(home)/_components/StackArchitech.tsx index 14464be..68aeda3 100644 --- a/apps/web/src/app/(home)/_components/StackArchitech.tsx +++ b/apps/web/src/app/(home)/_components/StackArchitech.tsx @@ -215,7 +215,6 @@ const StackArchitect = () => { const isWeb = hasWebFrontend(nextStack.frontend); const isPWACompat = hasPWACompatibleFrontend(nextStack.frontend); const isTauriCompat = hasTauriCompatibleFrontend(nextStack.frontend); - const isNative = hasNativeFrontend(nextStack.frontend); const isNuxt = nextStack.frontend.includes("nuxt"); if (nextStack.database === "none") { @@ -433,6 +432,7 @@ const StackArchitect = () => { }`; }, []); + // biome-ignore lint/correctness/useExhaustiveDependencies: useEffect(() => { const cmd = generateCommand(stack); setCommand(cmd); @@ -445,7 +445,6 @@ const StackArchitect = () => { const isWeb = currentHasWebFrontend; const isPWACompat = currentHasPWACompatibleFrontend; const isTauriCompat = currentHasTauriCompatibleFrontend; - const isNative = currentHasNativeFrontend; const isNuxt = stack.frontend.includes("nuxt"); if (!isPWACompat && stack.addons.includes("pwa")) { diff --git a/bun.lock b/bun.lock index 5632479..8f9c233 100644 --- a/bun.lock +++ b/bun.lock @@ -14,7 +14,7 @@ }, "apps/cli": { "name": "create-better-t-stack", - "version": "2.0.12", + "version": "2.1.1", "bin": { "create-better-t-stack": "dist/index.js", },