chore(deps): update typescript-eslint monorepo to v8 (major) (#11598)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
renovate[bot]
2024-08-05 19:13:00 +00:00
committed by GitHub
parent bb3d9b6306
commit 2821e0bf95
26 changed files with 358 additions and 324 deletions
@@ -36,7 +36,9 @@
assetViewingStore.showAssetViewer(false);
});
$: $featureFlags.map || handlePromiseError(goto(AppRoute.PHOTOS));
$: if (!$featureFlags.map) {
handlePromiseError(goto(AppRoute.PHOTOS));
}
const omit = (obj: MapSettings, key: string) => {
return Object.fromEntries(Object.entries(obj).filter(([k]) => k !== key));
};
@@ -28,7 +28,9 @@
export let data: PageData;
$featureFlags.trash || handlePromiseError(goto(AppRoute.PHOTOS));
if (!$featureFlags.trash) {
handlePromiseError(goto(AppRoute.PHOTOS));
}
const assetStore = new AssetStore({ isTrashed: true });
const assetInteractionStore = createAssetInteractionStore();