Skip to content

Commit

Permalink
♻️ Update plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaatttt committed May 15, 2024
1 parent 68b4e38 commit c5fe149
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions plugin/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { ConfigPlugin } from 'expo/config-plugins';

import { ConfigProps } from './types';
import { withIosAppcuesRichPush } from './withIosAppcuesRichPush';
import { withIosAppcuesPush } from './withIosAppcuesPush';

const withAppcuesPush: ConfigPlugin<ConfigProps> = (config, props = {}) => {
config = withIosAppcuesRichPush(config, props);
config = withIosAppcuesPush(config, props);

return config;
};
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/withIosAppcuesPush.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const withEasTargets: ConfigPlugin<ConfigProps> = (config, props) => {
return config;
};

export const withIosAppcuesRichPush: ConfigPlugin<ConfigProps> = (
export const withIosAppcuesPush: ConfigPlugin<ConfigProps> = (
config,
props
) => {
Expand Down

0 comments on commit c5fe149

Please sign in to comment.