Fix routesToSkip not being persistent

This commit is contained in:
thepaperpilot 2022-12-23 18:41:49 -06:00
parent 9f787e53a7
commit 5d7c6883d2

View file

@ -105,7 +105,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
}
return redundancies;
});
const routesToSkip = ref<number[]>([]);
const routesToSkip = persistent<number[]>([]);
const currentRoute: ComputedRef<number[] | undefined> = computed(
() => currentRoutes.value[routeIndex.value]