From f85ce70ff2934ac34b10553f5e7767e4d1a9855c Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Sun, 30 Oct 2022 19:07:39 +0100 Subject: [PATCH] chore: Remove last bit of removed WebWorker component --- front/src/composables/useWebWorker.ts | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 front/src/composables/useWebWorker.ts diff --git a/front/src/composables/useWebWorker.ts b/front/src/composables/useWebWorker.ts deleted file mode 100644 index 161478ef7..000000000 --- a/front/src/composables/useWebWorker.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { createMessageChannel } from '#/communication' - -export default (channel: string) => { - return createMessageChannel(channel) -}