fix lint errors

This commit is contained in:
Aman Varshney
2025-05-13 11:59:22 +05:30
parent 837d46c675
commit cfb9d3659b
2 changed files with 0 additions and 16 deletions

View File

@@ -1429,15 +1429,6 @@ const StackBuilder = () => {
const isSelected = currentArray.includes(techId);
if (catKey === "webFrontend") {
const webTypes = [
"tanstack-router",
"react-router",
"tanstack-start",
"next",
"nuxt",
"svelte",
"solid",
];
if (techId === "none") {
nextArray = ["none"];
} else if (isSelected) {

View File

@@ -603,13 +603,6 @@ export const isStackDefault = <K extends keyof StackState>(
}
if (key === "webFrontend" && stack.webFrontend) {
const currentWeb = (stack.webFrontend as string[]).filter(
(f) => !f.startsWith("native-") && f !== "none",
);
const currentNative = (stack.webFrontend as string[]).filter((f) =>
f.startsWith("native-"),
);
if (key === "webFrontend") {
const defaultWeb = (DEFAULT_STACK.webFrontend as string[]).sort();
const valueWeb = (value as string[]).sort();