Work on log viewer

This commit is contained in:
Michael Mikovsky
2025-12-13 13:29:17 -07:00
parent 75f1fe1cc2
commit 7525b9a213
10 changed files with 274 additions and 5 deletions
-1
View File
@@ -162,7 +162,6 @@ impl Auth {
format!("Bearer {}", token.token),
Closure::once_into_js(move |ok: bool, response: String| {
if ok {
crate::log(&response);
if let Ok(value) = serde_json::from_str::<T>(&response) {
ret(value)
} else {