Skip to content

Commit

Permalink
Merge pull request #22 from ibi-group/fix-star-label
Browse files Browse the repository at this point in the history
Fix star aria-label
  • Loading branch information
amy-corson-ibigroup authored Jul 18, 2023
2 parents 246709a + 3839c4d commit 3ae1dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Stars.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Star = ({ index, selected }: { index?: string; selected?: boolean }) => {

return (
<svg
aria-label={index ? `${index + 1} stars` : ''}
aria-label={index ? `${Number(index) + 1} stars` : ''}
className={starStyles.star}
height="55"
width="54"
Expand Down

3 comments on commit 3ae1dbc

@vercel
Copy link

@vercel vercel bot commented on 3ae1dbc Jul 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

st-survey – ./

st-survey-git-dev-ibi-group.vercel.app
st-survey.vercel.app
st-survey-ibi-group.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 3ae1dbc Jul 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

atlrides-survey – ./

atlrides-survey-ibi-group.vercel.app
atlrides-survey.vercel.app
atlrides-survey-git-dev-ibi-group.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 3ae1dbc Jul 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

qa-survey – ./

qa-survey-git-dev-ibi-group.vercel.app
qa-survey.vercel.app
qa-survey-ibi-group.vercel.app

Please sign in to comment.