From a0b114c92fd2cd63077c81208237a05e1a240a7e Mon Sep 17 00:00:00 2001 From: bangae1 Date: Mon, 20 Oct 2025 18:57:38 +0900 Subject: [PATCH] , --- frontend/src/remote.jsx | 2 +- main.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/remote.jsx b/frontend/src/remote.jsx index e18d78c..8825752 100644 --- a/frontend/src/remote.jsx +++ b/frontend/src/remote.jsx @@ -5,7 +5,7 @@ import io from 'socket.io-client'; const SIGNALING_SERVER = 'http://localhost:3001'; // 실제 서버 주소로 변경 export default function RemoteControl() { - const [employeeId, setEmployeeId] = useState(''); + const [employeeId, setEmployeeId] = useState('psn14020'); const [status, setStatus] = useState('disconnected'); // 'disconnected' | 'connecting' | 'connected' const [displays, setDisplays] = useState([]); const [selectedDisplay, setSelectedDisplay] = useState(null); diff --git a/main.js b/main.js index 0c9a49e..63e6821 100644 --- a/main.js +++ b/main.js @@ -12,6 +12,7 @@ function createWindow() { sandbox: false } }); + win.webContents.openDevTools(); if (app.isPackaged) { win.loadFile(path.join(__dirname, 'frontend/dist/index.html'));