From 31012506bdded586620552d7886afac0baa49674 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Fri, 15 Jan 2021 10:36:59 +0000 Subject: [PATCH] Move telepath.js to utils --- client/src/entrypoints/admin/telepath/telepath.js | 2 +- .../src/{components/Telepath/Telepath.js => utils/telepath.js} | 0 .../Telepath/Telepath.test.js => utils/telepath.test.js} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename client/src/{components/Telepath/Telepath.js => utils/telepath.js} (100%) rename client/src/{components/Telepath/Telepath.test.js => utils/telepath.test.js} (99%) diff --git a/client/src/entrypoints/admin/telepath/telepath.js b/client/src/entrypoints/admin/telepath/telepath.js index 71662add0c..dcc7d8902a 100644 --- a/client/src/entrypoints/admin/telepath/telepath.js +++ b/client/src/entrypoints/admin/telepath/telepath.js @@ -1,3 +1,3 @@ -import Telepath from '../../../components/Telepath/Telepath'; +import Telepath from '../../../utils/telepath'; window.telepath = new Telepath(); diff --git a/client/src/components/Telepath/Telepath.js b/client/src/utils/telepath.js similarity index 100% rename from client/src/components/Telepath/Telepath.js rename to client/src/utils/telepath.js diff --git a/client/src/components/Telepath/Telepath.test.js b/client/src/utils/telepath.test.js similarity index 99% rename from client/src/components/Telepath/Telepath.test.js rename to client/src/utils/telepath.test.js index d3b7df5e2b..260e7fed8c 100644 --- a/client/src/components/Telepath/Telepath.test.js +++ b/client/src/utils/telepath.test.js @@ -1,6 +1,6 @@ /* eslint-disable dot-notation */ -import Telepath from './Telepath'; +import Telepath from './telepath'; const telepath = new Telepath();