diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/state/persisted/store.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/persisted/store.ts b/src/state/persisted/store.ts index ca023a636..f740126c4 100644 --- a/src/state/persisted/store.ts +++ b/src/state/persisted/store.ts @@ -28,7 +28,7 @@ export async function read(): Promise<Schema | undefined> { code: e.code, // @ts-ignore exists on some types expected: e?.expected, - path: e.path, + path: e.path?.join('.'), })) || [] logger.error(`persisted store: data failed validation on read`, {errors}) return undefined |