fix and new logo

This commit is contained in:
2025-11-13 12:12:25 +01:00
parent 6fe7bbbbb5
commit f7251b8ce3
4 changed files with 13 additions and 7 deletions
@@ -3,6 +3,7 @@ import { useCallback, useMemo } from 'react';
type Identifier = string | number;
type DocumentEntry = { id?: Identifier } & Record<string, unknown>;
type InspectTarget = DocumentEntry | Identifier | null | undefined;
type WorkspaceViewMode = 'desk' | 'grid' | 'list' | string;
@@ -24,7 +25,7 @@ interface UseDeskWorkspacePropsArgs {
handleDocumentsViewModeChange?: (mode: WorkspaceViewMode) => void;
handleDeskExit?: () => void;
refreshCurrentFolder?: () => Promise<void> | void;
inspectDocument?: (doc: DocumentEntry) => void;
inspectDocument?: (doc: InspectTarget) => void;
handleEntryPointerCore?: (...args: unknown[]) => void;
promoteSelectionOrder?: (...args: unknown[]) => void;
currentTenantId?: Identifier | null;