Add handling for new loaders, fix max height being applied when scrolling is disabled from #2898 (#3761)

This commit is contained in:
Prospector
2025-06-09 14:59:59 -07:00
committed by GitHub
parent 0278241006
commit 858c7e393f
2 changed files with 19 additions and 6 deletions

View File

@@ -177,8 +177,15 @@ export const formatCategory = (name) => {
return 'Colored Lighting'
} else if (name === 'optifine') {
return 'OptiFine'
} else if (name === 'bta-babric') {
return 'BTA (Babric)'
} else if (name === 'legacy-fabric') {
return 'Legacy Fabric'
} else if (name === 'java-agent') {
return 'Java Agent'
} else if (name === 'nilloader') {
return 'NilLoader'
}
return capitalizeString(name)
}