fix: ref view in document (#2685)

* fix: remove set ref view in document as the current view

* ci: fix tests

* ci: fix tauri build
This commit is contained in:
Nathan.fooo
2023-06-03 13:40:12 +08:00
committed by GitHub
parent 5994cc135f
commit 4fa39f298c
19 changed files with 76 additions and 40 deletions

View File

@ -11,7 +11,7 @@ pub struct AppFlowyEnv {
impl AppFlowyEnv {
pub fn parser(env_str: &str) {
if let Ok(env) = serde_json::from_str::<AppFlowyEnv>(env_str) {
dbg!(&env);
tracing::trace!("{:?}", env);
env.supabase_config.write_env();
env.supabase_db_config.write_env();
}