refactor: debug naming and misc

This commit is contained in:
--list
2026-01-19 18:41:23 -08:00
parent d6bdf4feff
commit 239b0698c6
22 changed files with 53 additions and 161 deletions

View File

@@ -2,7 +2,7 @@ import { computed, ref } from 'vue'
import { createSharedComposable } from '@vueuse/core'
import type { WorkspaceRole, WorkspaceType } from '../api/workspaceApi'
import { useWorkspaceStore } from '../stores/workspaceStore'
import { useTeamWorkspaceStore } from '../stores/teamWorkspaceStore'
/** Permission flags for workspace actions */
export interface WorkspacePermissions {
@@ -131,7 +131,7 @@ function getUIConfig(
* Internal implementation of UI configuration composable.
*/
function useWorkspaceUIInternal() {
const store = useWorkspaceStore()
const store = useTeamWorkspaceStore()
// Tab management (shared UI state)
const activeTab = ref<string>('plan')