Pull in the destination from the api

This commit is contained in:
Owen
2026-05-15 11:48:13 -07:00
parent 868bcd8e34
commit 6010515da0
6 changed files with 29 additions and 20 deletions
+3 -3
View File
@@ -223,9 +223,9 @@ export default function RdpClient({
);
}
const destination = target
? `${target.ip}:${target.port}`
: "";
const destination = target ? `${target.ip}:${target.port}` : "";
console.log("Starting RDP session with destination:", destination);
const builder = userInteraction
.configBuilder()