File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/features/feeds/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -969,7 +969,7 @@ export const MainnetTable = ({
969969 const isDeprecating = ecosystem === "deprecating"
970970
971971 const filteredMetadata = network . metadata
972- . sort ( ( a , b ) => ( a . name < b . name ? - 1 : 1 ) )
972+ . sort ( ( a , b ) => ( a . name . toUpperCase ( ) < b . name . toUpperCase ( ) ? - 1 : 1 ) )
973973 . filter ( ( metadata ) => {
974974 // ---
975975 // Categorization logic:
@@ -1208,7 +1208,7 @@ export const TestnetTable = ({
12081208 const isDefault = ! isSmartData && ! isRates && ! isStreams && ! isUSGovernmentMacroeconomicData
12091209
12101210 const filteredMetadata = network . metadata
1211- . sort ( ( a , b ) => ( a . name < b . name ? - 1 : 1 ) )
1211+ . sort ( ( a , b ) => ( a . name . toUpperCase ( ) < b . name . toUpperCase ( ) ? - 1 : 1 ) )
12121212 . filter ( ( metadata ) => {
12131213 // ---
12141214 // Categorization logic:
You can’t perform that action at this time.
0 commit comments