Skip to content

Commit

Permalink
web: Fix another minor typo with new admin urls
Browse files Browse the repository at this point in the history
  • Loading branch information
domdomegg committed Feb 3, 2025
1 parent c33ed08 commit af41227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/UsersPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const UsersPanel: React.FC = () => {
onSubmit={async (data) => {
const userId = (await req('post /admin/users', data)).data;
await refetchUsers();
void router.push(`/admin/?page=user&userId=${userId}/`);
void router.push(`/admin/?page=user&userId=${userId}`);
}}
/>
</Modal>
Expand Down

0 comments on commit af41227

Please sign in to comment.