mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-28 12:11:53 +01:00
Fix docs explorer cmd+click
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
import { atomWithKVStorage } from '../../lib/atoms/atomWithKVStorage';
|
||||
|
||||
export const showGraphQLDocExplorerAtom = atomWithKVStorage<boolean>('show_graphql_docs', false);
|
||||
export const showGraphQLDocExplorerAtom = atomWithKVStorage<
|
||||
Record<
|
||||
string,
|
||||
| {
|
||||
type?: string;
|
||||
field?: string;
|
||||
parentType?: string;
|
||||
}
|
||||
| null
|
||||
| undefined
|
||||
>
|
||||
>('show_graphql_docs', {});
|
||||
|
||||
Reference in New Issue
Block a user