From 4558fff36c0da007a2f3b4ea5f037bc0e329a268 Mon Sep 17 00:00:00 2001 From: Andrew W Date: Wed, 21 Aug 2024 22:45:14 +1200 Subject: [PATCH] Move function return to right line on scan success (#521) Issue #520 --- lib/barcode/stock.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/barcode/stock.dart b/lib/barcode/stock.dart index b9671e2f..b084759f 100644 --- a/lib/barcode/stock.dart +++ b/lib/barcode/stock.dart @@ -44,8 +44,8 @@ class BarcodeScanStockLocationHandler extends BarcodeHandler { if (result && OneContext.hasContext) { OneContext().pop(); - return; } + return; } }