Turn one off

This commit is contained in:
Manav Rathi 2024-04-30 16:42:52 +05:30
parent 7fb912c9df
commit 1076471d51
No known key found for this signature in database

View file

@ -54,8 +54,11 @@ export const watchStore = new Store({
*/
export const migrateLegacyWatchStoreIfNeeded = () => {
let needsUpdate = false;
const watches = watchStore.get("mappings")?.map((watch) => {
const watches = watchStore.get("mappings").map((watch) => {
let collectionMapping = watch.collectionMapping;
// The required type defines the latest schema, but before migration
// this'll be undefined, so tell ESLint to calm down.
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
if (!collectionMapping) {
collectionMapping = watch.uploadStrategy == 1 ? "parent" : "root";
needsUpdate = true;