You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
useFilePicker hook will now return the same function if you memoize the hook props:
const ufpProps = useMemo(() => ({ accept: "*", multiple: true }). []);
const { openFilePicker } = useFilePicker(ufpProps);
// openFilePicker is always gonna stay the same so you can pass it as a dependency to other hooks