From 0fe9810f1bb6ad75386a68dac8b358280acca589 Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Tue, 20 Oct 2020 16:49:22 -0500 Subject: [PATCH] Make hooks a subdirectory of app/javascript --- app/javascript/{components => }/hooks/useSteps.spec.ts | 0 app/javascript/{components => }/hooks/useSteps.ts | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename app/javascript/{components => }/hooks/useSteps.spec.ts (100%) rename app/javascript/{components => }/hooks/useSteps.ts (98%) diff --git a/app/javascript/components/hooks/useSteps.spec.ts b/app/javascript/hooks/useSteps.spec.ts similarity index 100% rename from app/javascript/components/hooks/useSteps.spec.ts rename to app/javascript/hooks/useSteps.spec.ts diff --git a/app/javascript/components/hooks/useSteps.ts b/app/javascript/hooks/useSteps.ts similarity index 98% rename from app/javascript/components/hooks/useSteps.ts rename to app/javascript/hooks/useSteps.ts index 8dc1f1dd..38f4a006 100644 --- a/app/javascript/components/hooks/useSteps.ts +++ b/app/javascript/hooks/useSteps.ts @@ -5,8 +5,8 @@ import take from 'lodash/take'; import fromPairs from 'lodash/fromPairs'; import findLastIndex from 'lodash/findLastIndex'; -import hashLeftAntiJoin from '../../common/lodash-joins/hash/hashLeftAntiJoin'; -import hashRightAntiJoin from '../../common/lodash-joins/hash/hashRightAntiJoin'; +import hashLeftAntiJoin from '../common/lodash-joins/hash/hashLeftAntiJoin'; +import hashRightAntiJoin from '../common/lodash-joins/hash/hashRightAntiJoin'; export interface KeyedStep { key: string;