summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/screens/ProductScannerScreen.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/ProductScannerScreen.js b/src/screens/ProductScannerScreen.js
index 95d5865..35926e1 100644
--- a/src/screens/ProductScannerScreen.js
+++ b/src/screens/ProductScannerScreen.js
@@ -1,6 +1,6 @@
import React, { useState } from 'react';
import { View, Text, Button } from 'react-native';
-import BarcodeScanner from '../../components/BarcodeScanner';
+import BarcodeScanner from '../components/BarcodeScanner';
const ProductScannerScreen = ({ navigation }) => {
const [scannedProduct, setScannedProduct] = useState(null);