mirror of
https://github.com/langgenius/dify.git
synced 2025-07-17 14:22:06 +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,
|
||
|
}
|
||
|
}
|