From 5955376d5ee1b9f7f744a0cc3d12396606325350 Mon Sep 17 00:00:00 2001 From: Vinzent Date: Sat, 23 Aug 2025 17:09:54 +0200 Subject: [PATCH] docs: update auth error codes link --- packages/gotrue/lib/src/types/auth_exception.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gotrue/lib/src/types/auth_exception.dart b/packages/gotrue/lib/src/types/auth_exception.dart index 17bcfe345..7df1f11c9 100644 --- a/packages/gotrue/lib/src/types/auth_exception.dart +++ b/packages/gotrue/lib/src/types/auth_exception.dart @@ -14,7 +14,7 @@ class AuthException implements Exception { /// In that case [statusCode] will also be null. /// /// Find the full list of error codes in our documentation. - /// https://supabase.com/docs/reference/dart/auth-error-codes + /// https://supabase.com/docs/guides/auth/debugging/error-codes final String? code; const AuthException(this.message, {this.statusCode, this.code});