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

fix: Typo in pages/icons.js #10256

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading