mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
Fix routesToSkip not being persistent
This commit is contained in:
parent
9f787e53a7
commit
5d7c6883d2
1 changed files with 1 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue