Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejkustra committed Oct 30, 2023
1 parent d3726c3 commit 2cbc764
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pages/workspace/withPolicy.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import * as OnyxTypes from '../../types/onyx';
import {RouteProp, useNavigationState} from '@react-navigation/native';
import PropTypes from 'prop-types';
import React, {ComponentType, ForwardedRef, RefAttributes, forwardRef} from 'react';
import React, {ComponentType, ForwardedRef, forwardRef, RefAttributes} from 'react';
import {OnyxEntry, withOnyx} from 'react-native-onyx';
import _ from 'underscore';
import policyMemberPropType from '@pages/policyMemberPropType';
import * as Policy from '@userActions/Policy';
import CONST from '@src/CONST';
import ONYXKEYS from '@src/ONYXKEYS';
import * as OnyxTypes from '@src/types/onyx';

type PolicyRoute = RouteProp<{params: {policyID: string}}>;

Expand Down

0 comments on commit 2cbc764

Please sign in to comment.