Vendor TailwindCSS

This commit is contained in:
2026-08-05 18:56:04 +03:00
parent c0b79afcc1
commit 3b909d2620
6 changed files with 12 additions and 5 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ pub async fn init_user_login(request: &TestServer, ctx: &AppContext) -> LoggedIn
}
pub fn auth_header(token: &str) -> (HeaderName, HeaderValue) {
let auth_header_value = HeaderValue::from_str(&format!("Bearer {}", &token)).unwrap();
let auth_header_value = HeaderValue::from_str(&format!("Bearer {}", token)).unwrap();
(HeaderName::from_static("authorization"), auth_header_value)
}