refactor: fix some lintter erros

This commit is contained in:
Sonny
2024-05-25 17:19:26 +02:00
committed by Sonny
parent 09700a1916
commit 8b161dcf49
7 changed files with 31 additions and 21 deletions

View File

@@ -21,7 +21,7 @@ export default function DeleteCollectionPage({
const handleSubmit = () => {
const { method, url } = route('collection.delete', {
params: { id: collection.id },
params: { id: collection.id.toString() },
});
submit(method, url);
};