From da2ee58772044ddc81f28381e532a755622ecdb4 Mon Sep 17 00:00:00 2001 From: Vincent Tourraine Date: Thu, 28 Nov 2024 21:56:28 +0100 Subject: [PATCH] Update Notifications names Clean up notification name type Fix import statement for `NotificationsName.swift` --- Packages/Env/Sources/Env/NotificationsName.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packages/Env/Sources/Env/NotificationsName.swift b/Packages/Env/Sources/Env/NotificationsName.swift index 7b2a2d09..6132203f 100644 --- a/Packages/Env/Sources/Env/NotificationsName.swift +++ b/Packages/Env/Sources/Env/NotificationsName.swift @@ -1,7 +1,7 @@ -import UIKit +import Foundation extension Notification.Name { - public static let shareSheetClose = NSNotification.Name("shareSheetClose") + public static let shareSheetClose = Notification.Name("shareSheetClose") public static let refreshTimeline = Notification.Name("refreshTimeline") public static let homeTimeline = Notification.Name("homeTimeline") public static let trendingTimeline = Notification.Name("trendingTimeline")