You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/passkeys/passkeys_web/lib/passkeys_web.dart
+6-10Lines changed: 6 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,7 @@ class PasskeysWeb extends PasskeysPlatform {
23
23
final _ = window['PasskeyAuthenticator'];
24
24
} catch (_) {
25
25
debugPrint(
26
-
'Error: Passkeys Web SDK not loaded. Please include the Passkeys Web SDK (bundle.js) in your HTML file. You can find it on https://github.com/corbado/flutter-passkeys/releases/download/2.4.0/bundle.js',
27
-
);
26
+
'Error: Passkeys Web SDK not loaded. Please include the Passkeys Web SDK (bundle.js) in your HTML file. You can find it on https://github.com/corbado/flutter-passkeys/releases/download/2.4.0/bundle.js');
28
27
// We need to close the window to prevent the app from running afterwards thus causing runtime errors
29
28
// This is a workaround for the fact that we cannot throw an exception in the web platform
30
29
// because it will not be caught by the Flutter framework
@@ -50,9 +49,8 @@ class PasskeysWeb extends PasskeysPlatform {
0 commit comments