Skip to content

Commit

Permalink
fix: Update copy for tokenless select option
Browse files Browse the repository at this point in the history
  • Loading branch information
RulaKhaled committed Nov 15, 2024
1 parent f461fa7 commit 562eac3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ describe('TokenlessSection', () => {
render(<TokenlessSection />, { wrapper })

const optionText = await screen.findByText(
'Select an authentication option'
'Select an authentication option (only relevant for public repositories)'
)
expect(optionText).toBeInTheDocument()
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ const TokenlessSection: React.FC = () => {
</div>
</Card.Header>
<Card.Content>
<p className="mb-3">Select an authentication option</p>
<p className="mb-3">
Select an authentication option (only relevant for public
repositories)
</p>
<RadioTileGroup
value={
tokenRequired
Expand Down

0 comments on commit 562eac3

Please sign in to comment.