Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit ab23d2e

Browse files
fix: relative import removed in appsflyer plugin (segmentio#369)
1 parent c3a7b50 commit ab23d2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/plugins/plugin-appsflyer/src/methods/identify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import appsFlyer from 'react-native-appsflyer';
2-
import type { IdentifyEventType } from '../../../../core/src/types';
2+
import type { IdentifyEventType } from '@segment/analytics-react-native';
33

44
export default (event: IdentifyEventType) => {
55
const userId = event.userId;

packages/plugins/plugin-appsflyer/src/methods/track.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { TrackEventType } from '../../../../core/src/types';
21
import appsFlyer from 'react-native-appsflyer';
2+
import type { TrackEventType } from '@segment/analytics-react-native';
33

44
type Properties = { [key: string]: any };
55

0 commit comments

Comments
 (0)