From 2222eb79a26d8885b8f39ddfc94a13b4208d67ae Mon Sep 17 00:00:00 2001 From: Brett Slaski Date: Thu, 30 Nov 2023 11:34:49 -0600 Subject: [PATCH] refactor: clean up unused function --- src/graphql/resolvers/mutations/shareWithAddBy.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/graphql/resolvers/mutations/shareWithAddBy.js b/src/graphql/resolvers/mutations/shareWithAddBy.js index 11a0233..78666ff 100644 --- a/src/graphql/resolvers/mutations/shareWithAddBy.js +++ b/src/graphql/resolvers/mutations/shareWithAddBy.js @@ -3,10 +3,7 @@ import * as Sentry from '@sentry/node'; import { dataSources } from '@thatconference/api'; import memberStore from '../../../dataSources/cloudFirestore/member'; import sharingWithStore from '../../../dataSources/cloudFirestore/sharingWith'; -import { - findSharedProfile, - findSharedProfileProfileLoader, -} from '../../../lib/findSharedProfile'; +import { findSharedProfileProfileLoader } from '../../../lib/findSharedProfile'; const dlog = debug('that:api:members:mutation:share-with-add-by'); const orderStore = dataSources.cloudFirestore.order;