diff --git a/src/fragments/lib/auth/ios/signout/10_local_signout.mdx b/src/fragments/lib/auth/ios/signout/10_local_signout.mdx index b653d40062d..a3ba6b09ea3 100644 --- a/src/fragments/lib/auth/ios/signout/10_local_signout.mdx +++ b/src/fragments/lib/auth/ios/signout/10_local_signout.mdx @@ -21,17 +21,17 @@ func signOutLocally() async { // Sign Out completed with some errors. User is signed out of the device. if let hostedUIError = hostedUIError { - print("HostedUI error \(String(describing: hostedUIError)) + print("HostedUI error \(String(describing: hostedUIError))") } if let globalSignOutError = globalSignOutError { // Optional: Use escape hatch to retry revocation of globalSignOutError.accessToken. - print("GlobalSignOut error \(String(describing: globalSignOutError)) + print("GlobalSignOut error \(String(describing: globalSignOutError))") } if let revokeTokenError = revokeTokenError { // Optional: Use escape hatch to retry revocation of revokeTokenError.accessToken. - print("Revoke token error \(String(describing: revokeTokenError)) + print("Revoke token error \(String(describing: revokeTokenError))") } case .failed(let error): @@ -64,17 +64,17 @@ func signOutLocally() -> AnyCancellable { case let .partial(revokeTokenError, globalSignOutError, hostedUIError): // Sign Out completed with some errors. User is signed out of the device. if let hostedUIError = hostedUIError { - print("HostedUI error \(String(describing: hostedUIError)) + print("HostedUI error \(String(describing: hostedUIError))") } if let globalSignOutError = globalSignOutError { // Optional: Use escape hatch to retry revocation of globalSignOutError.accessToken. - print("GlobalSignOut error \(String(describing: globalSignOutError)) + print("GlobalSignOut error \(String(describing: globalSignOutError))") } if let revokeTokenError = revokeTokenError { // Optional: Use escape hatch to retry revocation of revokeTokenError.accessToken. - print("Revoke token error \(String(describing: revokeTokenError)) + print("Revoke token error \(String(describing: revokeTokenError))") } case .failed(let error): diff --git a/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-out/index.mdx b/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-out/index.mdx index 8a5e0197f3a..c07d2a236ae 100644 --- a/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-out/index.mdx +++ b/src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-out/index.mdx @@ -265,17 +265,17 @@ func signOutLocally() async { // Sign Out completed with some errors. User is signed out of the device. if let hostedUIError = hostedUIError { - print("HostedUI error \(String(describing: hostedUIError)) + print("HostedUI error \(String(describing: hostedUIError))") } if let globalSignOutError = globalSignOutError { // Optional: Use escape hatch to retry revocation of globalSignOutError.accessToken. - print("GlobalSignOut error \(String(describing: globalSignOutError)) + print("GlobalSignOut error \(String(describing: globalSignOutError))") } if let revokeTokenError = revokeTokenError { // Optional: Use escape hatch to retry revocation of revokeTokenError.accessToken. - print("Revoke token error \(String(describing: revokeTokenError)) + print("Revoke token error \(String(describing: revokeTokenError))") } case .failed(let error): @@ -307,17 +307,17 @@ func signOutLocally() -> AnyCancellable { case let .partial(revokeTokenError, globalSignOutError, hostedUIError): // Sign Out completed with some errors. User is signed out of the device. if let hostedUIError = hostedUIError { - print("HostedUI error \(String(describing: hostedUIError)) + print("HostedUI error \(String(describing: hostedUIError))") } if let globalSignOutError = globalSignOutError { // Optional: Use escape hatch to retry revocation of globalSignOutError.accessToken. - print("GlobalSignOut error \(String(describing: globalSignOutError)) + print("GlobalSignOut error \(String(describing: globalSignOutError))") } if let revokeTokenError = revokeTokenError { // Optional: Use escape hatch to retry revocation of revokeTokenError.accessToken. - print("Revoke token error \(String(describing: revokeTokenError)) + print("Revoke token error \(String(describing: revokeTokenError))") } case .failed(let error):