Skip to content

Commit

Permalink
Update link
Browse files Browse the repository at this point in the history
  • Loading branch information
RulaKhaled committed Nov 21, 2024
1 parent bdaf264 commit 03a3324
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ describe('ActivationRequiredSelfHosted', () => {
name: /Manage members/,
})
expect(link).toBeInTheDocument()
expect(link).toHaveAttribute('href', '/admin/gh/access')
expect(link).toHaveAttribute('href', '/admin/gh/users')
})
})
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function SeatsAvailable({ isAdmin }: { isAdmin: boolean }) {
</div>
{isAdmin ? (
<Button
to={{ pageName: 'access' }}
to={{ pageName: 'users' }}
disabled={undefined}
hook={undefined}
variant="primary"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ describe('ActivationRequiredSelfHosted', () => {
name: /Manage members/,
})
expect(manageMembersLink).toBeInTheDocument()
expect(manageMembersLink).toHaveAttribute('href', '/admin/gh/access')
expect(manageMembersLink).toHaveAttribute('href', '/admin/gh/users')
})
})
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ function SeatsAvailable({ isAdmin }: { isAdmin: boolean }) {
<div className="left-[100px] md:relative">
{isAdmin ? (
<Button
hook="trial-eligible-banner-access"
hook="activation-required-self-hosted-banner-users"
to={{
pageName: 'access',
pageName: 'users',
}}
disabled={false}
variant="primary"
Expand Down

0 comments on commit 03a3324

Please sign in to comment.