Skip to content

Commit

Permalink
Fix circular dependency (#3323)
Browse files Browse the repository at this point in the history
## Description

Fixes circular dependency introduced in #3202


![image](https://github.com/user-attachments/assets/4900041c-47b1-410f-a4bb-6f3dc6bfe603)

## Test plan

- `npx madge --image ./madge-graph-fixed.svg --extensions js,jsx,ts,tsx
--circular .`
  • Loading branch information
latekvo authored Jan 10, 2025
1 parent 3603e89 commit 6509383
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import {
TextProps as RNTextProps,
} from 'react-native';

import { Gesture, GestureDetector } from '../';
import { GestureObjects as Gesture } from '../handlers/gestures/gestureObjects';
import { GestureDetector } from '../handlers/gestures/GestureDetector';

export const Text = forwardRef(
(props: RNTextProps, ref: ForwardedRef<RNText>) => {
Expand Down

0 comments on commit 6509383

Please sign in to comment.