Address Affected Concern remove redundant imports

This commit is contained in:
variableundefined
2020-10-31 18:16:10 -04:00
parent 59bccfcf30
commit 96e1413d3d
4 changed files with 6 additions and 9 deletions
-2
View File
@@ -121,7 +121,6 @@ log transactions
tgui_interact(user)
/obj/machinery/atm/tgui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = FALSE, datum/tgui/master_ui = null, datum/tgui_state/state = GLOB.tgui_default_state)
user.set_machine(src)
ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open)
if (!ui)
ui = new(user, src, ui_key, "ATM", name, 550, 650)
@@ -129,7 +128,6 @@ log transactions
/obj/machinery/atm/tgui_data(mob/user)
var/list/data = list()
data["src"] = UID()
data["view_screen"] = view_screen
data["machine_id"] = machine_id
data["held_card_name"] = held_card ? held_card.name : "------"
+2 -1
View File
@@ -71,7 +71,8 @@ const IntroductionAndCard = (props, context) => {
} = data;
return (
<Section title="Nanotrasen Automatic Teller Machine" >
<Box>For all your monetary need!
<Box>
For all your monetary need!
</Box>
<Divider />
<Box>
@@ -1,13 +1,11 @@
import { createSearch, decodeHtmlEntities } from 'common/string';
import { createSearch } from 'common/string';
import { Fragment } from 'inferno';
import { useBackend, useLocalState } from "../backend";
import { Box, Divider, Button, Flex, Icon, Input, LabeledList, NumberInput, Section, Table, Tabs } from '../components';
import { Button, Flex, Icon, Input, LabeledList, Section, Table } from '../components';
import { FlexItem } from '../components/Flex';
import { Window } from "../layouts";
import { ComplexModal, modalOpen } from './common/ComplexModal';
import { LoginInfo } from './common/LoginInfo';
import { LoginScreen } from './common/LoginScreen';
import { TemporaryNotice } from './common/TemporaryNotice';
export const AccountsUplinkTerminal = (properties, context) => {
const { act, data } = useBackend(context);
File diff suppressed because one or more lines are too long