fix: multiple ws connect

Signed-off-by: pakintada@gmail.com <Pakin>
This commit is contained in:
pakintada@gmail.com 2026-04-23 11:37:19 +07:00
parent 230d4abe0c
commit 30f8ab773f
5 changed files with 11 additions and 14 deletions

View file

@ -11,7 +11,7 @@ type CommandRequest = 'sheet' | 'command';
function getServiceName(cmdReq: CommandRequest) {
switch (cmdReq) {
case 'sheet':
return 'sheet-api';
return 'sheet-service';
case 'command':
return 'command';
}