Skip to content

Commit

Permalink
Fix linter...
Browse files Browse the repository at this point in the history
  • Loading branch information
FdelMazo committed Feb 6, 2024
1 parent c73cf01 commit c2bab18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Repos.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const SortFeature = ({ sortOption, setSortOption }) => {
icon={sortOption.icon}
onClick={() => {
setSortOption(
sortOption.shortName == sortOptions[0].shortName ? sortOptions[1] : sortOptions[0]
sortOption.shortName === sortOptions[0].shortName ? sortOptions[1] : sortOptions[0]
);
}}
/>
Expand Down

0 comments on commit c2bab18

Please sign in to comment.