revert(catalog): disable catalog filters temporarily, they don't perform well with api

This commit is contained in:
Tom (plebeius.eth)
2024-09-17 17:04:38 +02:00
parent 7742e1c9b0
commit cadf416058
2 changed files with 24 additions and 16 deletions
@@ -131,7 +131,7 @@ const CatalogFilters = () => {
return (
<>
<span className={`${styles.filtersButton} button`} onClick={() => setShowModal(true)}>
<span className={`${styles.filtersButton} button`} onClick={() => setShowModal(false)} style={{ cursor: 'not-allowed' }}>
{t('filters')}
</span>
{showModal && <FiltersModal closeModal={closeModal} />}