feat: use new form layout for link/delete

This commit is contained in:
Sonny
2024-11-01 20:07:41 +01:00
committed by Sonny
parent edc7972a2f
commit 907dda300e
4 changed files with 42 additions and 4 deletions

View File

@@ -98,7 +98,7 @@ export default class LinksController {
const link = await this.getLinkById(linkId, auth.user!.id);
await link.load('collection');
return inertia.render('links/delete', { link });
return inertia.render('mantine/links/delete', { link });
}
async delete({ request, auth, response }: HttpContext) {