fix(client): build errors due to types

This commit is contained in:
Elian Doran 2025-04-04 18:07:26 +03:00
parent 67f39e8bde
commit dc103348d5
No known key found for this signature in database

View File

@ -68,7 +68,7 @@ export interface ExecuteCommandData<T> extends CommandData {
export interface NoteSwitchedContext {
noteContext: NoteContext;
notePath: string | null;
notePath: string | null | undefined;
}
/**
@ -329,7 +329,7 @@ type EventMappings = {
ntxId: string | null;
};
contextsReopened: {
ntxId: string;
ntxId?: string;
mainNtxId: string | null;
tabPosition: number;
afterNtxId?: string;