refactor: remove unneeded intermediate variable in id tags cache code
[e-mobility-charging-stations-simulator.git] / src / charging-station / UIServiceWorkerBroadcastChannel.ts
index 3a21bc7378d71161da31480e9b7e9a3d36ada4bc..5b7ab4847503eacfa3fc02fc0684c01269b3ae5c 100644 (file)
@@ -1,5 +1,4 @@
-import type { AbstractUIService } from './internal';
-import { WorkerBroadcastChannel } from './WorkerBroadcastChannel';
+import { type AbstractUIService, WorkerBroadcastChannel } from './internal';
 import {
   type BroadcastChannelResponse,
   type BroadcastChannelResponsePayload,
@@ -7,7 +6,7 @@ import {
   type ResponsePayload,
   ResponseStatus,
 } from '../types';
-import { logger } from '../utils/Logger';
+import { logger } from '../utils';
 
 const moduleName = 'UIServiceWorkerBroadcastChannel';