This commit is contained in:
Benjamin Lu
2025-12-09 02:46:49 -08:00
parent 38b589c88e
commit 3ce8cca664

View File

@@ -64,12 +64,9 @@ import { useSidebarTabStore } from '@/stores/workspace/sidebarTabStore'
type OverlayState = 'hidden' | 'empty' | 'expanded'
const props = withDefaults(
defineProps<{
expanded?: boolean
}>(),
{}
)
const props = defineProps<{
expanded?: boolean
}>()
const emit = defineEmits<{
(e: 'update:expanded', value: boolean): void