Skip to content

Commit 9062159

Browse files
committed
chore: fix linting
1 parent 7b5f446 commit 9062159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/pluggableWidgets/barcode-scanner-native/src/__tests__/BarcodeScanner.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { createElement } from "react";
55
import { View } from "react-native";
66
import { BarcodeScanner, Props } from "../BarcodeScanner";
77

8-
let mockOnCodeScanned: ((codes: { value: string }[]) => void) | undefined;
8+
let mockOnCodeScanned: ((codes: Array<{ value: string }>) => void) | undefined;
99

1010
jest.mock("react-native-vision-camera", () => ({
1111
Camera: ({ children, ...props }: any) => <View {...props}>{children}</View>,

0 commit comments

Comments
 (0)