Remove actix packages

Temporarily comment out login and authentication
This commit is contained in:
2024-03-31 12:04:36 -04:00
parent 2e42cc743c
commit d5e16c80ea
4 changed files with 15 additions and 696 deletions

View File

@ -66,8 +66,8 @@ fn NotFound() -> impl IntoView {
{
// this can be done inline because it's synchronous
// if it were async, we'd use a server function
let resp = expect_context::<leptos_actix::ResponseOptions>();
resp.set_status(actix_web::http::StatusCode::NOT_FOUND);
let resp = expect_context::<leptos_axum::ResponseOptions>();
resp.set_status(axum::http::StatusCode::NOT_FOUND);
}
view! {