Skip to content

Commit b7b94de

Browse files
author
mdatelle
committed
fix: use unknown instead of any in AcceptableValue type
1 parent 5da974c commit b7b94de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/components/DummyServerSwitcher.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { useDummyServerStore } from '~/_data/serverState';
77
import type { ServerSelector } from '~/_data/serverState';
88
99
// Define the same type locally as in reka-ui
10-
type AcceptableValue = string | number | Record<string, any> | null;
10+
type AcceptableValue = string | number | Record<string, unknown> | null;
1111
1212
const store = useDummyServerStore();
1313
const { selector, serverState } = storeToRefs(store);

0 commit comments

Comments
 (0)