refactor: cleanup imports
[e-mobility-charging-stations-simulator.git] / ui / web / src / composables / UIClient.ts
index cf9894009d8844b5f4879d44d899404052f0db1a..22435d49e38e13b5a1460118cbcca3b84d823873 100644 (file)
@@ -1,5 +1,10 @@
-import { ProcedureName, ResponseStatus, type RequestPayload } from '@/types/UIProtocol';
-import type { ProtocolResponse, ResponsePayload } from '@/types/UIProtocol';
+import {
+  ProcedureName,
+  type RequestPayload,
+  type ResponsePayload,
+  type ProtocolResponse,
+  ResponseStatus,
+} from '@/types/UIProtocol';
 
 import Utils from './Utils';
 import config from '@/assets/config';
@@ -170,7 +175,7 @@ export default class UIClient {
     const response = JSON.parse(messageEvent.data) as ProtocolResponse;
 
     if (Array.isArray(response) === false) {
-      throw new Error('Response not an array: ' + JSON.stringify(response, null, 2));
+      throw new Error(`Response not an array: ${JSON.stringify(response, null, 2)}`);
     }
 
     const [uuid, responsePayload] = response;
@@ -188,7 +193,7 @@ export default class UIClient {
       }
       this.deleteResponseHandler(uuid);
     } else {
-      throw new Error('Not a response to a request: ' + JSON.stringify(response, null, 2));
+      throw new Error(`Not a response to a request: ${JSON.stringify(response, null, 2)}`);
     }
   }
 }