feat: use new form layout for link/edit

This commit is contained in:
Sonny
2024-11-01 20:01:11 +01:00
committed by Sonny
parent d66e92adbc
commit edc7972a2f
2 changed files with 60 additions and 1 deletions

View File

@@ -50,7 +50,7 @@ export default class LinksController {
await this.collectionsController.getCollectionsByAuthorId(userId);
const link = await this.getLinkById(linkId, userId);
return inertia.render('links/edit', { collections, link });
return inertia.render('mantine/links/edit', { collections, link });
}
async update({ request, auth, response }: HttpContext) {