From 1b15b0f4ba57a3103668969391ff13ce0c616f82 Mon Sep 17 00:00:00 2001 From: BongaTheProto <93835010+BongaTheProto@users.noreply.github.com> Date: Mon, 3 Jun 2024 22:13:45 -0500 Subject: [PATCH] bin/tgui --fix It'd be useful to run that command automatically --- .../tgui/interfaces/MobInteraction/MainContent.tsx | 7 +++---- tgui/packages/tgui/interfaces/MobInteraction/index.tsx | 1 - .../tgui/interfaces/MobInteraction/tabs/GenitalTab.tsx | 3 ++- .../interfaces/MobInteraction/tabs/InteractionsTab.tsx | 3 ++- .../packages/tgui/interfaces/MobInteraction/tabs/index.tsx | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/tgui/packages/tgui/interfaces/MobInteraction/MainContent.tsx b/tgui/packages/tgui/interfaces/MobInteraction/MainContent.tsx index cd0edacb5875..816c7807e47b 100644 --- a/tgui/packages/tgui/interfaces/MobInteraction/MainContent.tsx +++ b/tgui/packages/tgui/interfaces/MobInteraction/MainContent.tsx @@ -1,11 +1,10 @@ import { useLocalState } from '../../backend'; -import { Icon, Input, Section, Tabs, Stack } from '../../components'; - +import { Icon, Input, Section, Stack, Tabs } from '../../components'; import { - InteractionsTab, - GenitalTab, CharacterPrefsTab, ContentPreferencesTab, + GenitalTab, + InteractionsTab, } from './tabs'; export const MainContent = (props, context) => { diff --git a/tgui/packages/tgui/interfaces/MobInteraction/index.tsx b/tgui/packages/tgui/interfaces/MobInteraction/index.tsx index 2b4e30b16814..2bfbbed3b0c9 100644 --- a/tgui/packages/tgui/interfaces/MobInteraction/index.tsx +++ b/tgui/packages/tgui/interfaces/MobInteraction/index.tsx @@ -1,6 +1,5 @@ import { Stack } from '../../components'; import { Window } from '../../layouts'; - import { InfoSection } from './InfoSection'; import { MainContent } from './MainContent'; diff --git a/tgui/packages/tgui/interfaces/MobInteraction/tabs/GenitalTab.tsx b/tgui/packages/tgui/interfaces/MobInteraction/tabs/GenitalTab.tsx index 9a7c5b1e13d3..0bd1f6bc9485 100644 --- a/tgui/packages/tgui/interfaces/MobInteraction/tabs/GenitalTab.tsx +++ b/tgui/packages/tgui/interfaces/MobInteraction/tabs/GenitalTab.tsx @@ -1,6 +1,7 @@ -import { filter, map, sortBy } from 'common/collections'; +import { filter, sortBy } from 'common/collections'; import { flow } from 'common/fp'; import { createSearch } from 'common/string'; + import { useBackend, useLocalState } from '../../../backend'; import { Button, Flex, Section, Stack } from '../../../components'; diff --git a/tgui/packages/tgui/interfaces/MobInteraction/tabs/InteractionsTab.tsx b/tgui/packages/tgui/interfaces/MobInteraction/tabs/InteractionsTab.tsx index 57171bb35c74..055c0fc075ec 100644 --- a/tgui/packages/tgui/interfaces/MobInteraction/tabs/InteractionsTab.tsx +++ b/tgui/packages/tgui/interfaces/MobInteraction/tabs/InteractionsTab.tsx @@ -1,6 +1,7 @@ -import { filter, map, sortBy } from 'common/collections'; +import { filter, sortBy } from 'common/collections'; import { flow } from 'common/fp'; import { createSearch } from 'common/string'; + import { useBackend, useLocalState } from '../../../backend'; import { Button, Icon, Section, Stack, Tooltip } from '../../../components'; import { Box } from '../../../components'; diff --git a/tgui/packages/tgui/interfaces/MobInteraction/tabs/index.tsx b/tgui/packages/tgui/interfaces/MobInteraction/tabs/index.tsx index 22ab6b581691..81f49d5444a3 100644 --- a/tgui/packages/tgui/interfaces/MobInteraction/tabs/index.tsx +++ b/tgui/packages/tgui/interfaces/MobInteraction/tabs/index.tsx @@ -1,4 +1,4 @@ -export { InteractionsTab } from './InteractionsTab'; -export { GenitalTab } from './GenitalTab'; export { CharacterPrefsTab } from './CharacterPrefsTab'; export { ContentPreferencesTab } from './ContentPreferencesTab'; +export { GenitalTab } from './GenitalTab'; +export { InteractionsTab } from './InteractionsTab';