fix: project loading state as per updated org ID. LAST FIX.

This commit is contained in:
Darshan
2025-06-20 14:14:25 +05:30
parent 67ed991922
commit f798c507df
+2 -1
View File
@@ -319,7 +319,8 @@
$: projects = sdk.forConsole.projects.list([
Query.equal(
'teamId',
data.currentOrgId ?? currentOrganizationId ?? page.params.organization
// id from page params ?? id from store ?? id from preferences
page.params.organization ?? currentOrganizationId ?? data.currentOrgId
),
Query.limit(5),
Query.orderDesc('$updatedAt')