Skip to content

Commit

Permalink
my god
Browse files Browse the repository at this point in the history
  • Loading branch information
Gboster-0 committed Mar 19, 2024
1 parent f64813a commit 36f76c3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tgui/packages/tgui/interfaces/AuxiliaryManagerConsole.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const CoreSupressionSelector = (props, context) => {
<Section title="Master core supression systems">
{available_suppressions.length > 0 && (
<LabeledList>
{available_suppressions.map((available_suppressions) => (
{available_suppressions.map(available_suppressions => (
<LabeledList.Item
key={available_suppressions.name}
label={available_suppressions.name}
Expand Down Expand Up @@ -153,7 +153,7 @@ const BulletUpgrades = (props, context) => {

return (
<LabeledList>
{bullet_upgrades.map((bullet_upgrades) => (
{bullet_upgrades.map(bullet_upgrades => (
<LabeledList.Item
key={bullet_upgrades.name}
label={bullet_upgrades.name}
Expand Down Expand Up @@ -194,7 +194,7 @@ const MoreBulletUpgrades = (props, context) => {

return (
<LabeledList>
{real_bullet_upgrades.map((real_bullet_upgrades) => (
{real_bullet_upgrades.map(real_bullet_upgrades => (
<LabeledList.Item
key={real_bullet_upgrades.name}
label={real_bullet_upgrades.name}
Expand Down Expand Up @@ -235,7 +235,7 @@ const AgentUpgrades = (props, context) => {

return (
<LabeledList>
{agent_upgrades.map((agent_upgrades) => (
{agent_upgrades.map(agent_upgrades => (
<LabeledList.Item
key={agent_upgrades.name}
label={agent_upgrades.name}
Expand Down Expand Up @@ -276,7 +276,7 @@ const AbnormalityUpgrades = (props, context) => {

return (
<LabeledList>
{abnormality_upgrades.map((abnormality_upgrades) => (
{abnormality_upgrades.map(abnormality_upgrades => (
<LabeledList.Item
key={abnormality_upgrades.name}
label={abnormality_upgrades.name}
Expand Down Expand Up @@ -317,7 +317,7 @@ const MiscUpgrades = (props, context) => {

return (
<LabeledList>
{misc_upgrades.map((misc_upgrades) => (
{misc_upgrades.map(misc_upgrades => (
<LabeledList.Item
key={misc_upgrades.name}
label={misc_upgrades.name}
Expand Down

0 comments on commit 36f76c3

Please sign in to comment.