mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-27 10:56:57 +00:00

* chore: async load user profile * chore: enable reset workspace * chore: add confirm dialog
8 lines
180 B
Rust
8 lines
180 B
Rust
use crate::FlowyError;
|
|
|
|
impl std::convert::From<serde_json::Error> for FlowyError {
|
|
fn from(error: serde_json::Error) -> Self {
|
|
FlowyError::serde().with_context(error)
|
|
}
|
|
}
|