Ignore:
Timestamp:
02/19/26 23:17:54 (5 months ago)
Author:
Mihail <mihail2.naumov@…>
Branches:
main
Children:
4f2900a
Parents:
6270fa4
Message:

Fixed clone auth errors and component names in the component dialogs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • components/ComponentDialog.tsx

    r6270fa4 rd07d68c  
    308308                                Browsing:
    309309                            </Box>
    310                             <b> {category === 'gpu' ? 'GRAPHICS CARDS' : category === 'memory_card' ? 'STORAGE EXPANSION CARDS' : category?.toUpperCase()}</b>
     310                            <b> {
     311                                category === 'gpu' ? 'GRAPHICS CARDS'
     312                                    : category === 'memory_card' ? 'STORAGE EXPANSION CARDS'
     313                                        : category === 'power_supply' ? 'POWER SUPPLIES'
     314                                            : category === 'network_card' ? 'NETWORK CARDS'
     315                                                : category === 'network_adapters' ? 'NETWORK ADAPTERS'
     316                                                    : category === 'sound_card' ? 'SOUND CARDS'
     317                                                        : category === 'optical_drive' ? 'OPTICAL DRIVES'
     318                                                            : category?.toUpperCase()}</b>
    311319                            {mode === 'forge' && currentBuildId && (
    312320                                <Typography
Note: See TracChangeset for help on using the changeset viewer.