File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
FirebaseSwiftUI/FirebaseAuthSwiftUI/Sources/Services Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,8 @@ public extension AuthService {
302
302
func handleSignInLink( url url: URL ) async throws {
303
303
do {
304
304
guard let email = emailLink else {
305
- throw AuthServiceError . invalidEmailLink ( " email address is missing from app storage. Is this the same device? " )
305
+ throw AuthServiceError
306
+ . invalidEmailLink ( " email address is missing from app storage. Is this the same device? " )
306
307
}
307
308
let link = url. absoluteString
308
309
guard let continueUrl = CommonUtils . getQueryParamValue ( from: link, paramName: " continueUrl " )
@@ -352,11 +353,6 @@ public extension AuthService {
352
353
}
353
354
}
354
355
355
- // We don't have config for forceSameDevice so it is set as default
356
- let forceSameDevice = " 1 "
357
- let sameDeviceItem = URLQueryItem ( name: " ui_sd " , value: forceSameDevice)
358
- queryItems. append ( sameDeviceItem)
359
-
360
356
urlComponents. queryItems = queryItems
361
357
if let finalURL = urlComponents. url {
362
358
actionCodeSettings. url = finalURL
You can’t perform that action at this time.
0 commit comments