Skip to content

Commit d87a4b1

Browse files
committed
fix: fix linting issues
1 parent 504b9ac commit d87a4b1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ module.exports = deepmerge(base, {
99
"@typescript-eslint/ban-ts-ignore": "off",
1010
"no-unused-expressions": "off",
1111
"@typescript-eslint/no-unused-expressions": "error",
12-
"no-undef": "off"
12+
"no-undef": "off",
13+
"react/react-in-jsx-scope": "off"
1314
}
1415
});

packages/pluggableWidgets/bottom-sheet-native/src/components/CustomModalSheet.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createElement, ReactElement, ReactNode, useEffect, useRef, useState, useMemo } from "react";
1+
import { ReactElement, ReactNode, useEffect, useRef, useState, useMemo } from "react";
22
import { InteractionManager, LayoutChangeEvent, Modal, Pressable, SafeAreaView, StyleSheet, View } from "react-native";
33
import BottomSheet, { BottomSheetBackdrop, BottomSheetBackdropProps, BottomSheetView } from "@gorhom/bottom-sheet";
44
import { EditableValue, ValueStatus } from "mendix";

0 commit comments

Comments
 (0)