From 84ae52d55278ccd93a6e65ae624ffb2282f5bf3f Mon Sep 17 00:00:00 2001 From: Drulikar Date: Mon, 6 Nov 2023 07:25:11 -0800 Subject: [PATCH] Remove unneeded fragment --- .../tgui/interfaces/TacmapAdminPanel.js | 92 +++++++++---------- 1 file changed, 44 insertions(+), 48 deletions(-) diff --git a/tgui/packages/tgui/interfaces/TacmapAdminPanel.js b/tgui/packages/tgui/interfaces/TacmapAdminPanel.js index 104c4f10500c..a5d00c688a2f 100644 --- a/tgui/packages/tgui/interfaces/TacmapAdminPanel.js +++ b/tgui/packages/tgui/interfaces/TacmapAdminPanel.js @@ -1,5 +1,5 @@ import { useBackend, useLocalState } from '../backend'; -import { Tabs, Section, Button, Fragment, Stack, Flex } from '../components'; +import { Tabs, Section, Button, Stack, Flex } from '../components'; import { DrawnMap } from './DrawnMap'; import { Window } from '../layouts'; @@ -116,53 +116,49 @@ const FactionPage = (props, context) => { } /> }> - - {Object(ckeys).map((ckey, ckey_index) => ( - - - - act('change_selection', { - uscm: is_uscm, - index: ckey_index, - }) - } - /> - - - {names[ckey_index]} ({ckey}) - {times[ckey_index]} - - - - act('delete', { - uscm: is_uscm, - index: ckey_index, - }) - } - /> - - - ))} - + {Object(ckeys).map((ckey, ckey_index) => ( + + + + act('change_selection', { + uscm: is_uscm, + index: ckey_index, + }) + } + /> + + + {names[ckey_index]} ({ckey}) - {times[ckey_index]} + + + + act('delete', { + uscm: is_uscm, + index: ckey_index, + }) + } + /> + + + ))} ); };