fix: collection edit form page component name

This commit is contained in:
Sonny
2025-08-21 01:58:20 +02:00
parent 42f391d99a
commit 11df24128f

View File

@@ -13,7 +13,7 @@ export default class UpdateCollectionController {
const collection =
await this.collectionService.getCollectionById(collectionId);
return inertia.render('collections/update', {
return inertia.render('collections/edit', {
collection: collection.serialize(),
});
}