Fix warning on user edit component

This commit is contained in:
Eli Ribble 2026-04-02 15:26:03 +00:00
parent af2299f417
commit 9574ed4812
No known key found for this signature in database

View file

@ -118,7 +118,9 @@ const routes: RouteRecordRaw[] = [
meta: { requiresAuth: true, showSidebar: true },
name: "User Edit",
path: "/_/configuration/user/:id",
props: true,
props: (route) => ({
id: parseInt(route.params.id as string, 10),
}),
},
{
path: "/_/intelligence",