⬆️ Bumped @dnd-kit deps

This commit is contained in:
2023-09-12 05:17:02 -04:00
parent ac80c23fa8
commit 4e82bc73e1
3 changed files with 31 additions and 33 deletions

View File

@@ -5,28 +5,30 @@ import { getQBitTorrentClientInfo } from "../../../actions/settings.actions";
export const QbittorrentConnectionForm = (): ReactElement => {
const dispatch = useDispatch();
const torrents = useSelector((state: RootState) => state.settings.torrentsList)
const torrents = useSelector(
(state: RootState) => state.settings.torrentsList,
);
useEffect(() => {
dispatch(getQBitTorrentClientInfo());
}, [])
const handleSubmit = () => {}
return (<>
<pre> {JSON.stringify(torrents, null, 4)} </pre>
<Form
onSubmit={handleSubmit}
// validate={}
/* initialValues={} */
render={({ handleSubmit }) => (
<form onSubmit={handleSubmit}>
<h2>Configure Qbittorrent</h2>
</form>
)}
/>
</>);
dispatch(getQBitTorrentClientInfo());
}, []);
const handleSubmit = () => {};
return (
<>
<pre> {JSON.stringify(torrents, null, 4)} </pre>
<Form
onSubmit={handleSubmit}
// validate={}
/* initialValues={} */
render={({ handleSubmit }) => (
<form onSubmit={handleSubmit}>
<h2>Configure Qbittorrent</h2>
</form>
)}
/>
</>
);
};
export default QbittorrentConnectionForm;