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,
+ })
+ }
+ />
+
+
+ ))}
);
};