File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import 'package:ht_shared/ht_shared.dart';
99///
1010/// Verifies the provided email and code, completes the sign-in/sign-up,
1111/// and returns the authenticated User object along with an auth token. It
12- /// supports a context-aware flow by checking for an `is_dashboard_login `
12+ /// supports a context-aware flow by checking for an `isDashboardLogin `
1313/// flag in the request body, which dictates whether to perform a strict
1414/// login-only check or a standard sign-in/sign-up.
1515Future <Response > onRequest (RequestContext context) async {
@@ -67,7 +67,7 @@ Future<Response> onRequest(RequestContext context) async {
6767 }
6868
6969 // Check for the optional dashboard login flag. Default to false.
70- final isDashboardLogin = (body['is_dashboard_login ' ] as bool ? ) ?? false ;
70+ final isDashboardLogin = (body['isDashboardLogin ' ] as bool ? ) ?? false ;
7171
7272 try {
7373 // Call the AuthService to handle the verification and sign-in logic
You can’t perform that action at this time.
0 commit comments