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

Commit

Permalink
fix: relative import removed in appsflyer plugin (segmentio#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
crodriguezanton authored Oct 27, 2021
1 parent c3a7b50 commit ab23d2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/plugins/plugin-appsflyer/src/methods/identify.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import appsFlyer from 'react-native-appsflyer';
import type { IdentifyEventType } from '../../../../core/src/types';
import type { IdentifyEventType } from '@segment/analytics-react-native';

export default (event: IdentifyEventType) => {
const userId = event.userId;
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/plugin-appsflyer/src/methods/track.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { TrackEventType } from '../../../../core/src/types';
import appsFlyer from 'react-native-appsflyer';
import type { TrackEventType } from '@segment/analytics-react-native';

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

Expand Down

0 comments on commit ab23d2e

Please sign in to comment.