Skip to content

Commit

Permalink
fix(macos): only use UIKit (from visionOS support) on non-mac targets
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy committed Sep 13, 2024
1 parent 975b7d0 commit 7f29dac
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@
*/

#import "RNAppleAuthASAuthorizationDelegates.h"

// Needed for visionOS support, but not available for macOS
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
#endif

#import <AuthenticationServices/AuthenticationServices.h>


Expand Down

0 comments on commit 7f29dac

Please sign in to comment.