Skip to content

Commit

Permalink
IOS-2651 Remove async
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-pusya committed Apr 10, 2024
1 parent dea514b commit dc73991
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Sentry

@MainActor
protocol AppErrorLoggerConfigurationProtocol: AnyObject {
func setUserId(_ userId: String) async
func setUserId(_ userId: String)
}

@MainActor
Expand All @@ -13,7 +13,7 @@ final class AppErrorLoggerConfiguration: AppErrorLoggerConfigurationProtocol {

// MARK: - AppErrorLoggerConfigurationProtocol

func setUserId(_ userId: String) async {
func setUserId(_ userId: String) {
let user = User()
user.userId = userId
SentrySDK.setUser(user)
Expand Down

0 comments on commit dc73991

Please sign in to comment.