Skip to content

Commit a6b1c3d

Browse files
authored
Fix import for watchOS (#7423)
This needs to be TARGET_OS_WATCH (also see the corresponding .m file, where it actually already is TARGET_OS_WATCH) #no-changelog
1 parent 89472d8 commit a6b1c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
#import <TargetConditionals.h>
18-
#if !TARGET_OS_OSX && !TARGET_OS_WATCHOS
18+
#if !TARGET_OS_OSX && !TARGET_OS_WATCH
1919

2020
#import <Foundation/Foundation.h>
2121
#import "FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthUIDelegate.h"

0 commit comments

Comments
 (0)