chore: build board card ui

This commit is contained in:
appflowy
2022-08-12 16:06:30 +08:00
parent 5de6a7447a
commit 055868bae3
34 changed files with 447 additions and 189 deletions

View File

@ -86,9 +86,13 @@ where
match response.parse::<R, E>() {
Ok(Ok(data)) => data,
Ok(Err(e)) => {
panic!("parse failed: {:?}", e)
panic!("Parser {:?} failed: {:?}", std::any::type_name::<R>(), e)
}
Err(e) => panic!("Internal error: {:?}", e),
Err(e) => panic!(
"Internal error: {:?}, parser {:?} failed",
e,
std::any::type_name::<R>(),
),
}
}