1
1
mirror of https://github.com/neosubhamoy/neodlp.git synced 2026-03-22 20:35:49 +05:30

refactor: fallback using per-instance flatpak check

This commit is contained in:
2026-02-27 21:56:51 +05:30
Verified
parent 7a7f6705d4
commit 5b7df779cc
6 changed files with 40 additions and 77 deletions

View File

@@ -152,12 +152,3 @@ export interface LogsStore {
addLog: (log: Log) => void;
clearLogs: () => void;
}
export interface EnvironmentStore {
isFlatpak: boolean;
isAppimage: boolean;
appDirPath: string | null;
setIsFlatpak: (isFlatpak: boolean) => void;
setIsAppimage: (isAppimage: boolean) => void;
setAppDirPath: (path: string) => void;
}