From 11df24128fcfc9d64f67ccd86a5ddc5913af3dc9 Mon Sep 17 00:00:00 2001 From: Sonny Date: Thu, 21 Aug 2025 01:58:20 +0200 Subject: [PATCH] fix: collection edit form page component name --- app/collections/controllers/update_collection_controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/collections/controllers/update_collection_controller.ts b/app/collections/controllers/update_collection_controller.ts index 26f4036..79af855 100644 --- a/app/collections/controllers/update_collection_controller.ts +++ b/app/collections/controllers/update_collection_controller.ts @@ -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(), }); }