Skip to content

Commit

Permalink
failsafe
Browse files Browse the repository at this point in the history
  • Loading branch information
larentoun committed Jul 12, 2024
1 parent 736fe1b commit 9094c66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tgui/packages/tgui/interfaces/PersonalCrafting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ export const PersonalCrafting = (props) => {
category === 'Blood Cult' ? 'red' : 'default'
}
>
{CATEGORY_NAMES[category]}
{CATEGORY_NAMES[category] || category}
</Stack.Item>
{category === 'Can Make' && (
<Stack.Item>
Expand Down Expand Up @@ -615,7 +615,7 @@ const FoodtypeContent = (props) => {
<Icon name={TYPE_ICONS[type] || 'circle'} />
</Stack.Item>
<Stack.Item grow style={{ textTransform: 'capitalize' }}>
{TYPE_NAMES[type]}
{TYPE_NAMES[type] || type.toLowerCase()}
</Stack.Item>
<Stack.Item>
{type === 'Can Make'
Expand Down

0 comments on commit 9094c66

Please sign in to comment.