(bugfix) decoding hub3a from image did not work

This commit is contained in:
Knee Cola
2025-11-23 12:53:35 +01:00
parent 5e66611c36
commit fb3393c985
2 changed files with 17 additions and 4 deletions

View File

@@ -53,10 +53,10 @@ export const BillEditForm: FC<BillEditFormProps> = ({ location, bill }) => {
// by converting it to `hub3aText`
if (!hub3aText && bill?.barcodeImage) {
decodeFromImage(bill.barcodeImage).then(results => {
if (results && results.length > 0) {
if (results) {
const {
hub3aText: decodedHub3aText,
} = results[0];
} = results;
setHub3aText(decodedHub3aText);
}