dify/web/app/components/workflow/nodes/question-classifier/storage.ts
2026-06-19 13:51:45 +00:00

12 lines
319 B
TypeScript

import { createLocalStorageState } from 'foxact/create-local-storage-state'
const [
useInlineLabelHintDismissed,
_useInlineLabelHintDismissedValue,
_useSetInlineLabelHintDismissed,
] = createLocalStorageState<boolean>('question-classifier-inline-label-hint-dismissed')
export {
useInlineLabelHintDismissed,
}