We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1fe560 commit 0f0f3f0Copy full SHA for 0f0f3f0
src/components/Product/ProductFilters.component.tsx
@@ -36,7 +36,7 @@ const ProductFilters = ({
36
) || [],
37
),
38
39
- ).sort() as string[];
+ ).sort((a, b) => a.localeCompare(b)) as string[];
40
41
// Get unique colors from all products
42
const availableColors = products
0 commit comments