chore: use Number() instead of parseInt
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2022-09-15 14:28:42 +02:00
parent 7c4b3c3be5
commit 6e0e4f8f35
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,7 @@ const router = createRouter({
meta: {
showAsModal: true,
},
props: route => ({ listId: parseInt(route.params.listId as string) }),
props: route => ({ listId: Number(route.params.listId as string) }),
},
{
path: '/lists/:listId',