crmAtoms.ts230 BView on GitHub
import { atom } from 'jotai';

/**
 * CRM field search state.
 * null  = inactive (input hidden)
 * string = active (input shown; value is the current filter query)
 */
export const crmFieldSearchAtom = atom<string | null>(null);