Chore: Fix link in UsersTable (#86152)

This commit is contained in:
Laura Fernández 2024-04-15 16:56:28 +02:00 committed by GitHub
parent d9a0cedd89
commit 726cd4a8a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ export const UsersTable = ({
header: 'Login',
cell: ({ row: { original } }: Cell<'login'>) => {
return (
<TextLink color="primary" inline={false} href={`admin/users/edit/${original.id}`} title="Edit user">
<TextLink color="primary" inline={false} href={`/admin/users/edit/${original.id}`} title="Edit user">
{original.login}
</TextLink>
);