From 608caa36df51fe66ce7fb027d5252b66ac0ce96b Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Fri, 20 Feb 2026 19:32:48 +0700 Subject: [PATCH] Fix peopleLeftMode initialization order in app setup --- frontend/app.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app.vue b/frontend/app.vue index 7e6364a..ebcb4ee 100644 --- a/frontend/app.vue +++ b/frontend/app.vue @@ -122,6 +122,7 @@ type WorkspaceDocument = { }; const selectedTab = ref("communications"); +const peopleLeftMode = ref("contacts"); function dayKey(date: Date) { const y = date.getFullYear(); @@ -1893,7 +1894,6 @@ function openPilotInstructions() { } } -const peopleLeftMode = ref("contacts"); const peopleListMode = ref<"contacts" | "deals">("contacts"); const peopleSearch = ref(""); const peopleSortMode = ref("lastContact");