diff --git a/web-chat/src/command.ts b/web-chat/src/command.ts index 1ce72adece..e6ee0e4835 100644 --- a/web-chat/src/command.ts +++ b/web-chat/src/command.ts @@ -92,7 +92,7 @@ function connections(waku: Waku | undefined): string[] { let strConnections = ' connections: ['; connections.forEach((connection) => { strConnections += JSON.stringify(connection.stat); - strConnections += "; " + JSON.stringify(connection.streams); + strConnections += '; ' + JSON.stringify(connection.streams); }); strConnections += ']'; response.push(strConnections);