fix(fmt): fmt
All checks were successful
CI / Format (push) Successful in 2s
CI / Clippy (pull_request) Successful in 3m7s
CI / Security Audit (pull_request) Has been skipped
CI / Tests (pull_request) Has been skipped
CI / Deploy (push) Has been skipped
CI / Deploy (pull_request) Has been skipped
CI / Clippy (push) Successful in 2m59s
CI / Security Audit (push) Has been skipped
CI / Tests (push) Has been skipped
CI / Format (pull_request) Successful in 3s

This commit is contained in:
Sharang Parnerkar
2026-02-24 12:42:34 +01:00
parent 5c7ab71edc
commit 0d86a34ab1

View File

@@ -25,8 +25,8 @@ pub async fn check_auth() -> Result<AuthInfo, ServerFnError> {
match user_state {
Some(u) => {
let librechat_url = std::env::var("LIBRECHAT_URL")
.unwrap_or_else(|_| "http://localhost:3080".into());
let librechat_url =
std::env::var("LIBRECHAT_URL").unwrap_or_else(|_| "http://localhost:3080".into());
Ok(AuthInfo {
authenticated: true,
sub: u.sub,