mirror of
https://github.com/langgenius/dify.git
synced 2025-11-12 09:25:17 +00:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
|
|
import { useHooksStore } from '@/app/components/workflow/hooks-store'
|
||
|
|
|
||
|
|
export const useSetWorkflowVarsWithValue = () => {
|
||
|
|
const fetchInspectVars = useHooksStore(s => s.fetchInspectVars)
|
||
|
|
|
||
|
|
return {
|
||
|
|
fetchInspectVars,
|
||
|
|
}
|
||
|
|
}
|