1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove traces

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-12-01 10:05:55 -05:00
parent ed99f24420
commit 4feff54796
2 changed files with 1 additions and 7 deletions

View File

@ -21,8 +21,6 @@ const appPathsStateInjectable = getInjectable({
},
set: (newState: AppPaths) => {
console.trace("whereamI?");
if (state) {
throw new Error("Tried to overwrite existing state of app paths.");
}

View File

@ -7,11 +7,7 @@ import appPathsInjectable from "../app-paths.injectable";
const directoryForUserDataInjectable = getInjectable({
id: "directory-for-user-data",
instantiate: (di) => {
console.trace("whereamI?");
return di.inject(appPathsInjectable).userData;
},
instantiate: (di) => di.inject(appPathsInjectable).userData,
});
export default directoryForUserDataInjectable;