Comment out some fields

This commit is contained in:
Owen
2026-05-11 16:10:24 -07:00
parent 89cc99f915
commit d42b6076d2

View File

@@ -57,7 +57,7 @@ export default function RdpClient() {
gatewayAddress: "ws://localhost:7171/jet/rdp", gatewayAddress: "ws://localhost:7171/jet/rdp",
hostname: "172.31.3.58:3389", hostname: "172.31.3.58:3389",
domain: "", domain: "",
authtoken: "", authtoken: "abc123",
kdcProxyUrl: "", kdcProxyUrl: "",
pcb: "", pcb: "",
desktopWidth: 1280, desktopWidth: 1280,
@@ -281,7 +281,7 @@ export default function RdpClient() {
} }
/> />
</Field> </Field>
<Field label="Auth Token" id="authtoken"> {/* <Field label="Auth Token" id="authtoken">
<Input <Input
id="authtoken" id="authtoken"
value={form.authtoken} value={form.authtoken}
@@ -296,7 +296,7 @@ export default function RdpClient() {
value={form.pcb} value={form.pcb}
onChange={(e) => update("pcb", e.target.value)} onChange={(e) => update("pcb", e.target.value)}
/> />
</Field> </Field> */}
<div className="grid grid-cols-2 gap-4"> <div className="grid grid-cols-2 gap-4">
<Field label="Desktop Width" id="desktopWidth"> <Field label="Desktop Width" id="desktopWidth">
<Input <Input
@@ -325,7 +325,7 @@ export default function RdpClient() {
/> />
</Field> </Field>
</div> </div>
<Field {/* <Field
label="KDC Proxy URL (optional)" label="KDC Proxy URL (optional)"
id="kdcProxyUrl" id="kdcProxyUrl"
> >
@@ -336,7 +336,7 @@ export default function RdpClient() {
update("kdcProxyUrl", e.target.value) update("kdcProxyUrl", e.target.value)
} }
/> />
</Field> </Field> */}
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<Checkbox <Checkbox
id="enable_clipboard" id="enable_clipboard"