diff --git a/desktop/flipper-server-core/src/comms/WebSocketClientConnection.tsx b/desktop/flipper-server-core/src/comms/WebSocketClientConnection.tsx index cb67533c0..63e620b45 100644 --- a/desktop/flipper-server-core/src/comms/WebSocketClientConnection.tsx +++ b/desktop/flipper-server-core/src/comms/WebSocketClientConnection.tsx @@ -41,7 +41,7 @@ export default class WebSocketClientConnection implements ClientConnection { const callbacks = this.pendingRequests.get(id); if (!callbacks) { - throw new Error(`Pending request ${id} is not found`); + throw new Error('Pending request was not found'); } this.pendingRequests.delete(id);