fix(ReceiptImportClient): remove extra comma in selectedCategoryId assignment

This commit is contained in:
Nils-Johan Gynther
2026-04-19 19:40:00 +02:00
parent afe89439c1
commit 645741669a
+1 -1
View File
@@ -173,7 +173,7 @@ export default function ReceiptImportClient({ isAdmin }: { isAdmin: boolean }) {
matchSource: 'none', matchSource: 'none',
categorySuggestion: item.categorySuggestion, categorySuggestion: item.categorySuggestion,
productSearch: '', productSearch: '',
selectedCategoryId: item.categorySuggestion?.categoryId ?? '',, selectedCategoryId: item.categorySuggestion?.categoryId ?? '',
}; };
}), }),
); );