* WIP * asd * Fix * Fix lint * Removed console log * asd * Removed isDefined * Fix/debounce company card onchange (#580) * Add internal state and debounce for editable text card * Use debounce for date fields too * Update refetch * Nit * Removed comments * Ménage --------- Co-authored-by: Emilien Chauvet <emilien.chauvet.enpc@gmail.com>
10 lines
298 B
TypeScript
10 lines
298 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
import { INITIAL_HOTKEYS_SCOPE } from '@/hotkeys/constants';
|
|
import { HotkeysScope } from '@/hotkeys/types/internal/HotkeysScope';
|
|
|
|
export const currentHotkeysScopeState = atom<HotkeysScope>({
|
|
key: 'currentHotkeysScopeState',
|
|
default: INITIAL_HOTKEYS_SCOPE,
|
|
});
|