Skip to content

Commit

Permalink
regression: Users tab misaligned (#32451)
Browse files Browse the repository at this point in the history
  • Loading branch information
dougfabris authored and matheusbsilva137 committed May 31, 2024
1 parent ce43604 commit 9a513f6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions apps/meteor/client/views/admin/users/AdminUsersPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ const AdminUsersPage = (): ReactElement => {
</ButtonGroup>
)}
</PageHeader>
<Tabs>
<TabsItem selected={!tab || tab === 'all'} onClick={() => setTab('all')}>
{t('All')}
</TabsItem>
</Tabs>
<PageContent>
<Tabs>
<TabsItem selected={!tab || tab === 'all'} onClick={() => setTab('all')}>
{t('All')}
</TabsItem>
</Tabs>
<UsersTable
filteredUsersQueryResult={filteredUsersQueryResult}
setUserFilters={setUserFilters}
Expand Down

0 comments on commit 9a513f6

Please sign in to comment.