Skip to content

Commit

Permalink
autofix!!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
kiVts committed May 20, 2024
1 parent 1221c97 commit a4d7548
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions tgui/packages/tgui/interfaces/XenomorphExtractor.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
import { useBackend, useState } from '../backend';
import { Section, Button, Stack, NoticeBox, LabeledList, Flex, Box, Dropdown, Divider } from '../components';
import {
Box,
Button,
Divider,
Dropdown,
Flex,
LabeledList,
NoticeBox,
Section,
Stack,
} from '../components';
import { Window } from '../layouts';

export const XenomorphExtractor = () => {
Expand Down Expand Up @@ -28,7 +38,8 @@ export const XenomorphExtractor = () => {
fluid
icon="eject"
disabled={!organ}
onClick={() => act('eject_organ')}>
onClick={() => act('eject_organ')}
>
{!organ ? 'Eject Biomass' : 'Eject ' + caste + ' biomass'}
</Button>
</Stack.Item>
Expand All @@ -37,7 +48,8 @@ export const XenomorphExtractor = () => {
fluid
icon="eject"
disabled={!organ}
onClick={() => act('process_organ')}>
onClick={() => act('process_organ')}
>
{!organ
? 'Process Biomass'
: 'Process Biomass, Expected value : ' + value}
Expand Down Expand Up @@ -96,11 +108,13 @@ export const XenomorphExtractor = () => {
ref: upgrades.ref,
vari: upgrades.vari,
})
}>
}
>
Print ({upgrades.cost})
</Button>
</Box>
}>
}
>
<Box mb={0.8}>
Clearance{' '}
{upgrades.clearance === 6
Expand All @@ -126,7 +140,7 @@ export const XenomorphExtractor = () => {
)}
</Box>
</LabeledList.Item>
) : null
) : null,
)}
</LabeledList>
)}
Expand Down

0 comments on commit a4d7548

Please sign in to comment.