From c701f07a3fc513047963bc540cb3513973429471 Mon Sep 17 00:00:00 2001 From: MichaelVerdon Date: Fri, 2 May 2025 10:29:57 +0100 Subject: [PATCH] chore(docs): Update Extension Helper Docs --- docs/cloud-messaging/receive.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/cloud-messaging/receive.md b/docs/cloud-messaging/receive.md index 65850719d761..27f02d081d8a 100644 --- a/docs/cloud-messaging/receive.md +++ b/docs/cloud-messaging/receive.md @@ -529,13 +529,13 @@ At this point, everything should still be running normally. The final step is in ```objc #import "NotificationService.h" #import "FirebaseMessaging.h" - #import "FirebaseAuth.h" // Add this line if you are using FirebaseAuth phone authentication + #import // Add this line if you are using FirebaseAuth phone authentication #import // Add this line if you are using FirebaseAuth phone authentication - @interface NotificationService () + @interface NotificationService () - @property (nonatomic, strong) void (^contentHandler)(UNNotificationContent *contentToDeliver); - @property (nonatomic, strong) UNMutableNotificationContent *bestAttemptContent; + @property(nonatomic) void (^contentHandler)(UNNotificationContent *contentToDeliver); + @property(nonatomic) UNMutableNotificationContent *bestAttemptContent; @end