improving VMC flow

This commit is contained in:
2026-06-29 15:10:37 +02:00
parent 17db608dbc
commit 55921f6ee3
14 changed files with 231 additions and 83 deletions

View File

@@ -59,9 +59,9 @@ class _WorkspaceScreenState extends State<WorkspaceScreen>
_loadWorkspaces();
} else {
// if not logged in then create temp workspace
SharedPreferences.getInstance().then((prefs) {
prefs.setString('workspaceId', const Uuid().v4());
});
if (prefs.getString("workspaceId") == null) {
await prefs.setString("workspaceId", const Uuid().v4());
}
_navigateToHome();
}
}