Skip to content

Commit

Permalink
Merge pull request #28507 from bernhardoj/fix/26988-useflipper-warning
Browse files Browse the repository at this point in the history
Fix useFlipper warning
  • Loading branch information
jasperhuangg authored Oct 2, 2023
2 parents 6347ce5 + cf429ec commit a4b3669
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/hooks/useFlipper/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default () => {};
3 changes: 3 additions & 0 deletions src/hooks/useFlipper/index.native.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import {useFlipper} from '@react-navigation/devtools';

export default useFlipper;
2 changes: 1 addition & 1 deletion src/libs/Navigation/NavigationRoot.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, {useRef, useEffect} from 'react';
import PropTypes from 'prop-types';
import {NavigationContainer, DefaultTheme, getPathFromState} from '@react-navigation/native';
import {useFlipper} from '@react-navigation/devtools';
import {useSharedValue, useAnimatedReaction, interpolateColor, withTiming, withDelay, Easing, runOnJS} from 'react-native-reanimated';
import useFlipper from '../../hooks/useFlipper';
import Navigation, {navigationRef} from './Navigation';
import linkingConfig from './linkingConfig';
import AppNavigator from './AppNavigator';
Expand Down

0 comments on commit a4b3669

Please sign in to comment.