From 7bb541a7172a713314d4ef77870e24ea9e3e277a Mon Sep 17 00:00:00 2001 From: Nicolae Natrapeiu Date: Fri, 14 Mar 2025 12:07:12 +0200 Subject: [PATCH] VAT threshold will very likely increase to this value from 1st April 2025 --- lib/state.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/state.ts b/lib/state.ts index 9d366b7..39b8c2c 100644 --- a/lib/state.ts +++ b/lib/state.ts @@ -26,7 +26,7 @@ export const initialState: State = { deductibleExpensesCurrency: BASE_CURRENCY, deductibleExpensesInterval: 'monthly', minimumWage: 3_300, - vatThreshold: 300_000, + vatThreshold: 395_000, }; export const state = proxy(initialState);