Changeset 92fafb3 for components/ComponentDialog.tsx
- Timestamp:
- 02/19/26 20:33:50 (5 months ago)
- Branches:
- main
- Children:
- 2c7b9c8
- Parents:
- c586cbd (diff), 546a194 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
components/ComponentDialog.tsx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
components/ComponentDialog.tsx
rc586cbd r92fafb3 57 57 return () => clearTimeout(timeoutId); 58 58 }, [tempSearchQuery]); 59 60 useEffect(() => { 61 if (open && category) { 62 setSelectedBrands([]); 63 setSortOrder('price_desc'); 64 setTempSearchQuery(''); 65 setSearchQuery(''); 66 setPriceRange([0, 2000]); 67 } 68 }, [open, category]); 69 59 70 60 71 useEffect(() => { … … 297 308 Browsing: 298 309 </Box> 299 <b> {category === 'gpu' ? 'G raphics Cards' : category?.toUpperCase()}</b>310 <b> {category === 'gpu' ? 'GRAPHICS CARDS' : category === 'memory_card' ? 'STORAGE EXPANSION CARDS' : category?.toUpperCase()}</b> 300 311 {mode === 'forge' && currentBuildId && ( 301 312 <Typography
Note:
See TracChangeset
for help on using the changeset viewer.
