Update search_input.tsx

This commit is contained in:
Damien Ostler 2024-06-02 02:07:20 -04:00
parent 912fa157e2
commit 712e1ce5cd

View File

@ -58,7 +58,7 @@ const SearchInput = ({ tagsChanged, searchChanged, nsfwChanged }: SearchInputPro
getData();
}, []);
const tagOptions = tags.map((tag: { name: string; }) => ({ value: tag.name, label: "🏷️"+tag.name }));
const tagOptions = tags.map((tag: { name: string; }) => ({ value: tag.name, label: "🏷️ "+tag.name }));
return (
<>
<div className="relative md:w-full lg:w-2/3 mx-auto flex flex-col items-center justify-center z-10">