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", },