diff --git a/src/interface/pages/Store.tsx b/src/interface/pages/Store.tsx
index 4d6d71d8..8b4f5b43 100644
--- a/src/interface/pages/Store.tsx
+++ b/src/interface/pages/Store.tsx
@@ -219,7 +219,7 @@ const Store = () => {
{displayTheme.name}
-
+
{displayTheme.description}
@@ -259,16 +259,9 @@ const Store = () => {
{gridThemes.filter(theme => theme.id !== displayTheme.id).sort((a, b) => a.name.localeCompare(displayTheme.name) - b.name.localeCompare(displayTheme.name)).map((theme, index) => (
{ setDisplayTheme(null); setDisplayTheme(theme); }} className='w-full cursor-pointer' variants={textVariants}>
-
-
-
+
+
{theme.name}
-
-
- {theme.description}
-

@@ -304,48 +297,15 @@ const Store = () => {
{filteredThemes.map((theme, index) => (
setDisplayTheme(theme)} key={index} className='w-full cursor-pointer'>
-
-
-
-
- {theme.name}
-
-
- {theme.description}
-
-
+
+
+ {theme.name}
+
-
- {
- currentThemes.includes(theme.id) ?
- :
-
- }
-
))}