Merge pull request 'fix: taxDue ref lacks null guard before bigint arithmetic (#329)' (#376) from fix/issue-329 into master

This commit is contained in:
johba 2026-02-28 15:15:04 +01:00
commit 80eb5a356f

View file

@ -113,7 +113,7 @@ const props = defineProps<{
const showTaxMenu = ref(false);
const newTaxRateIndex = ref<number | null>(null);
const taxDue = ref<bigint>();
const taxDue = ref<bigint>(0n);
const taxPaidGes = ref<number>();
const profit = ref<number>();
const loading = ref<boolean>(false);