Skip to content

Commit

Permalink
fix: use existing app group properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Spice-Z committed Oct 29, 2024
1 parent 651d74d commit 2c5a719
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions plugin/src/withShareExtensionEntitlements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ export const withShareExtensionEntitlements: ConfigPlugin = (config) => {
config.ios?.entitlements?.["com.apple.security.application-groups"];

let shareExtensionEntitlements: Record<string, string | string[]> = {
"com.apple.security.application-groups": [
existingAppGroup ?? getAppGroup(bundleIdentifier),
],
"com.apple.security.application-groups": existingAppGroup ?? [getAppGroup(bundleIdentifier)],
};

if (config.ios?.usesAppleSignIn) {
Expand Down

0 comments on commit 2c5a719

Please sign in to comment.