diff --git a/src/components/AbonnemangCheckout.tsx b/src/components/AbonnemangCheckout.tsx index 8325e81..df70f8b 100644 --- a/src/components/AbonnemangCheckout.tsx +++ b/src/components/AbonnemangCheckout.tsx @@ -22,7 +22,7 @@ const plans: Record = { }, "Stor": { kg: 10, - pricePerKg: 450, + pricePerKg: 400, shopifyLink: "#" }, }; diff --git a/src/components/AbonnemangForm.tsx b/src/components/AbonnemangForm.tsx index bb60f99..86a13f1 100644 --- a/src/components/AbonnemangForm.tsx +++ b/src/components/AbonnemangForm.tsx @@ -296,7 +296,7 @@ const AbonnemangForm = ({ selectedPlan, onClose }: AbonnemangFormProps) => { - + {errors.abonnemang && (

{errors.abonnemang}

diff --git a/src/components/PlansSection.tsx b/src/components/PlansSection.tsx index cf252ce..cf11fc3 100644 --- a/src/components/PlansSection.tsx +++ b/src/components/PlansSection.tsx @@ -34,7 +34,7 @@ const planDetails = [ { name: "Stor", kgPerWeek: "10 kg", - priceWeekExclVat: "4 500", + priceWeekExclVat: "4 000", employeeRecommendation: "25+ anställda", features: [ "10 kg kakor per vecka", diff --git a/tsconfig.app.json b/tsconfig.app.json index 3add82f..51f581d 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -1,31 +1,35 @@ { "compilerOptions": { - "types": ["vitest/globals"], - "target": "ES2020", - "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], - "module": "ESNext", - "skipLibCheck": true, - - /* Bundler mode */ - "moduleResolution": "bundler", "allowImportingTsExtensions": true, "isolatedModules": true, - "moduleDetection": "force", - "noEmit": true, "jsx": "react-jsx", - - /* Linting */ - "strict": false, + "lib": [ + "ES2020", + "DOM", + "DOM.Iterable" + ], + "module": "ESNext", + "moduleDetection": "force", + "moduleResolution": "bundler", + "noEmit": true, + "noFallthroughCasesInSwitch": false, + "noImplicitAny": false, "noUnusedLocals": false, "noUnusedParameters": false, - "noImplicitAny": false, - "noFallthroughCasesInSwitch": false, - - "baseUrl": ".", "paths": { - "@/*": ["./src/*"] - } + "@/*": [ + "./src/*" + ] + }, + "skipLibCheck": true, + "strict": false, + "target": "ES2020", + "types": [ + "vitest/globals" + ], + "useDefineForClassFields": true }, - "include": ["src"] -} + "include": [ + "src" + ] +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 2518773..6b68d80 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,16 +1,24 @@ { - "files": [], - "references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }], "compilerOptions": { - "baseUrl": ".", - "paths": { - "@/*": ["./src/*"] - }, - "noImplicitAny": false, - "noUnusedParameters": false, - "skipLibCheck": true, "allowJs": true, + "noImplicitAny": false, "noUnusedLocals": false, + "noUnusedParameters": false, + "paths": { + "@/*": [ + "./src/*" + ] + }, + "skipLibCheck": true, "strictNullChecks": false - } -} + }, + "files": [], + "references": [ + { + "path": "./tsconfig.app.json" + }, + { + "path": "./tsconfig.node.json" + } + ] +} \ No newline at end of file