Index: components/ComponentDialog.tsx
===================================================================
--- components/ComponentDialog.tsx	(revision 1b5c18bef56f1e5c7c01819c2ef8e8ec2b99b219)
+++ components/ComponentDialog.tsx	(revision 2c7b9c87c00eed8b078583bf0f8f63d1870ede7e)
@@ -57,4 +57,15 @@
         return () => clearTimeout(timeoutId);
     }, [tempSearchQuery]);
+
+    useEffect(() => {
+        if (open && category) {
+            setSelectedBrands([]);
+            setSortOrder('price_desc');
+            setTempSearchQuery('');
+            setSearchQuery('');
+            setPriceRange([0, 2000]);
+        }
+    }, [open, category]);
+
 
     useEffect(() => {
@@ -297,5 +308,5 @@
                                 Browsing:
                             </Box>
-                            <b> {category === 'gpu' ? 'Graphics Cards' : category?.toUpperCase()}</b>
+                            <b> {category === 'gpu' ? 'GRAPHICS CARDS' : category === 'memory_card' ? 'STORAGE EXPANSION CARDS' : category?.toUpperCase()}</b>
                             {mode === 'forge' && currentBuildId && (
                                 <Typography
