diff --git a/packages/app/src/app/components/Create/CreateBox.tsx b/packages/app/src/app/components/Create/CreateBox.tsx index 03cd1c99af5..bf3361d4335 100644 --- a/packages/app/src/app/components/Create/CreateBox.tsx +++ b/packages/app/src/app/components/Create/CreateBox.tsx @@ -82,8 +82,10 @@ export const CreateBox: React.FC = ({ if (searchQuery) { filteredTemplates = filteredTemplates.filter(template => { return ( - template.title?.toLowerCase().includes(searchQuery) || - template.tags.some(tag => tag.includes(searchQuery)) + template.title?.toLowerCase().includes(searchQuery.toLowerCase()) || + template.tags.some(tag => + tag.toLowerCase().includes(searchQuery.toLowerCase()) + ) ); }); } @@ -272,6 +274,7 @@ export const CreateBox: React.FC = ({ = ({ )} = ({ ) : ( {templates.map(template => (