Skip to content

Commit

Permalink
🚨 Fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaatttt authored and iujames committed Sep 17, 2024
1 parent 19c100e commit 338c220
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Sources/AppcuesKit/Push/PushMonitor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,11 @@ internal class PushMonitor: PushMonitoring {
}

if let experienceID = parsedNotification.experienceID {
actions.append(AppcuesLaunchExperienceAction(appcues: appcues, experienceID: experienceID, trigger: .pushNotification(notificationID: parsedNotification.notificationID)))
actions.append(AppcuesLaunchExperienceAction(
appcues: appcues,
experienceID: experienceID,
trigger: .pushNotification(notificationID: parsedNotification.notificationID)
))
}

let actionRegistry = appcues.container.resolve(ActionRegistry.self)
Expand Down

0 comments on commit 338c220

Please sign in to comment.