From b9710799d0d1e18eddf5fa2e925f9f27b044f555 Mon Sep 17 00:00:00 2001 From: Jimmy Date: Sat, 23 Nov 2024 20:46:31 -0800 Subject: [PATCH] fix typo --- backend/src/api/auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/auth.rs b/backend/src/api/auth.rs index 71d3f2c..ea84176 100644 --- a/backend/src/api/auth.rs +++ b/backend/src/api/auth.rs @@ -367,7 +367,7 @@ async fn login_post( return Err(AuthError::CsrfMissmatch(String::from( "Possible Cross Site Request Forgery attack detected", ))); - }st + } let token_result = oauth .exchange_code(AuthorizationCode::new(code))