* fix: scroll * fix: use ref * fix: new changes * fix: remove ref * fix: state * chore: clean up * Include Empty option * Include Empty option * Include Empty option * Fix tests --------- Co-authored-by: Charles Bochet <charles@twenty.com>
6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export const RelationPickerRecoilScopeContext = createContext<string | null>(
|
|
'relation-picker-context',
|
|
);
|