diff --git a/examples/testapp/src/theme/index.ts b/examples/testapp/src/theme/index.ts index 8866a49b1..056a9694d 100644 --- a/examples/testapp/src/theme/index.ts +++ b/examples/testapp/src/theme/index.ts @@ -33,7 +33,7 @@ export const theme = extendTheme({ * playground will default to the current system color mode. */ export const systemStorageManager = { - get: () => undefined, - set: () => {}, + get: () => null, + set: (_value: string) => {}, type: 'localStorage' as const, };