Skip to content

Commit

Permalink
fix repo name capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Sep 27, 2022
1 parent 686e5af commit 3319643
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ function ApplicationsSelection({ onNext }: ApplicationsSelectionProps) {
<RepositoryChip
key={application.id}
imageUrl={application.darkIcon || application.icon}
label={capitalize(application.name)}
label={application.name}
checked={!!selectedApplications.find(a => a.id === application.id)}
onClick={() => (isStack ? null : toggleApplication(application))}
cursor={selectedApplications.length >= MAX_SELECTED_APPLICATIONS && !selectedApplications.find(a => a.id === application.id) ? 'not-allowed' : 'pointer'}
Expand Down

0 comments on commit 3319643

Please sign in to comment.