Fix 'Cancel' button in the user form (#25161) (#25286)

Closes #25051

Signed-off-by: Jon Koops <jonkoops@gmail.com>
This commit is contained in:
Jon Koops
2023-12-05 10:03:16 +01:00
committed by GitHub
parent a095a96839
commit e16161d344
+1 -1
View File
@@ -370,7 +370,7 @@ export const UserForm = ({
component={
!user?.id
? (props) => (
<Link {...props} to={toUsers({ realm: realm.id! })} />
<Link {...props} to={toUsers({ realm: realm.realm! })} />
)
: undefined
}