From 5bc24667cfb32fc847d2014b52d04af12e4e5846 Mon Sep 17 00:00:00 2001 From: qoog Date: Wed, 17 Sep 2025 20:46:22 +0300 Subject: [PATCH] fix: type mismatch for `get` and `set` methods --- examples/testapp/src/theme/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, };