refactor: remove unused template literals

This commit is contained in:
Carlos Valente
2025-02-15 13:58:41 +01:00
committed by Carlos Valente
parent c8bf74a719
commit 70558c5104
2 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ export const eventStore = {
for (const dataKey of changedKeys) {
socket.sendAsJson({ type: `ontime-${dataKey}`, payload: store[dataKey] });
}
socket.sendAsJson({ type: `ontime-flush` });
socket.sendAsJson({ type: 'ontime-flush' });
isUpdatePending = null;
changedKeys.clear();
});