Remove deprecated lastSyncedFiles settings field from Obsidian client

This commit is contained in:
Debanjum Singh Solanky
2024-02-24 20:18:22 +05:30
parent 03a6b491b2
commit a46f70c4b0

View File

@@ -8,7 +8,6 @@ export interface KhojSetting {
khojApiKey: string;
connectedToBackend: boolean;
autoConfigure: boolean;
lastSyncedFiles: TFile[]; // Deprecated setting, will be removed in future
lastSync: Map<TFile, number>;
userEmail: string;
}
@@ -19,7 +18,6 @@ export const DEFAULT_SETTINGS: KhojSetting = {
khojApiKey: '',
connectedToBackend: false,
autoConfigure: true,
lastSyncedFiles: [],
lastSync: new Map(),
userEmail: '',
}