Skip to content
This repository was archived by the owner on Dec 3, 2022. It is now read-only.

Commit 39c47ee

Browse files
committed
typescript noImplicitAny will remain "false" on this release
1 parent 26c2dd9 commit 39c47ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/__tests__/Hooks-test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const AppNavigator2 = createSwitchNavigator(
8686

8787
describe('AppNavigator1 Stack', () => {
8888
const App = createAppContainer(AppNavigator1);
89-
let navigationContainer;
89+
let navigationContainer: any;
9090
beforeEach(() => {
9191
navigationContainer = renderer.create(<App />);
9292
});
@@ -108,7 +108,7 @@ describe('AppNavigator1 Stack', () => {
108108

109109
describe('AppNavigator2 Stack', () => {
110110
const App = createAppContainer(AppNavigator2);
111-
let navigationContainer;
111+
let navigationContainer: any;
112112
beforeEach(() => {
113113
navigationContainer = renderer.create(<App />);
114114
});

0 commit comments

Comments
 (0)