From b257dfd3662f533110435f8d2c913f81d31959d1 Mon Sep 17 00:00:00 2001 From: Sam Wray Date: Fri, 3 Mar 2023 19:45:48 +0100 Subject: [PATCH] fix(meyda): update import path (#825) Meyda did a sneak update to TypeScript on 5.2.2 and we were trying to import a .ts file instead of a .js --- src/application/worker/loop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/application/worker/loop.js b/src/application/worker/loop.js index 2003da9c2..86a89a8df 100644 --- a/src/application/worker/loop.js +++ b/src/application/worker/loop.js @@ -3,7 +3,7 @@ import get from "lodash.get"; import store from "./store"; import map from "../utils/map"; import constants, { GROUP_DISABLED, GROUP_ENABLED } from "../constants"; -import { applyWindow } from "meyda/src/utilities"; +import { applyWindow } from "meyda/dist/esm/utilities"; const meyda = { windowing: applyWindow };