Skip to content

Commit

Permalink
bin/tgui --fix
Browse files Browse the repository at this point in the history
It'd be useful to run that command automatically
  • Loading branch information
MosleyTheMalO committed Jun 4, 2024
1 parent d8788c8 commit 1b15b0f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
7 changes: 3 additions & 4 deletions tgui/packages/tgui/interfaces/MobInteraction/MainContent.tsx
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down
1 change: 0 additions & 1 deletion tgui/packages/tgui/interfaces/MobInteraction/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Stack } from '../../components';
import { Window } from '../../layouts';

import { InfoSection } from './InfoSection';
import { MainContent } from './MainContent';

Expand Down
Original file line number Diff line number Diff line change
@@ -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';

Expand Down
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
4 changes: 2 additions & 2 deletions tgui/packages/tgui/interfaces/MobInteraction/tabs/index.tsx
Original file line number Diff line number Diff line change
@@ -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';

0 comments on commit 1b15b0f

Please sign in to comment.