Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
fix: typo in icon.js (#10256)
Browse files Browse the repository at this point in the history
checked if it's changed from everywhere it is used so that it doesn't harm anything - @kumarsonsoff3
  • Loading branch information
PrajvalaRC authored Mar 13, 2024
1 parent 8937d0e commit d7b4ec6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default function Icons({ popularIcons }) {
});
};

const filterredIcons = useMemo(
const filteredIcons = useMemo(
(value = keyword) => {
if (value.length < 3) {
setThreeOrMore(false);
Expand Down Expand Up @@ -114,7 +114,7 @@ export default function Icons({ popularIcons }) {
/>
)}
<ul className="flex flex-wrap gap-4 mt-4">
{filterredIcons.map((iconName, index) => (
{filteredIcons.map((iconName, index) => (
<li key={index}>
<Badge
content={iconName.count}
Expand Down

0 comments on commit d7b4ec6

Please sign in to comment.