update dx

This commit is contained in:
2026-04-05 19:39:00 -04:00
parent 2517cd777f
commit bd99b4beac
3 changed files with 115 additions and 77 deletions
+2 -1
View File
@@ -2,7 +2,7 @@ use dioxus::prelude::*;
use tonic::IntoRequest;
use crate::{
components::{basic::Input, Notif, NotifType},
components::{Notif, NotifType, PasskeyLoginButton, basic::Input},
contexts::AuthContext,
rpc::{aoba::Credentials, get_auth_rpc_client},
};
@@ -72,6 +72,7 @@ pub fn Login() -> Element {
required: true,
}
button { onclick: login, "Login!" }
PasskeyLoginButton {}
}
}
}