From 687d0555c87996b7f6ff6f28639d0b37df8aecf1 Mon Sep 17 00:00:00 2001 From: okbel Date: Thu, 3 May 2018 15:18:09 -0300 Subject: [PATCH] moving mutations to /hocs folder --- .../client/containers/DownloadCommentHistory.js | 2 +- .../client/{mutations.js => hocs/index.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename plugins/talk-plugin-profile-data/client/{mutations.js => hocs/index.js} (100%) diff --git a/plugins/talk-plugin-profile-data/client/containers/DownloadCommentHistory.js b/plugins/talk-plugin-profile-data/client/containers/DownloadCommentHistory.js index 96dbf6975..df9843d4a 100644 --- a/plugins/talk-plugin-profile-data/client/containers/DownloadCommentHistory.js +++ b/plugins/talk-plugin-profile-data/client/containers/DownloadCommentHistory.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import { compose, gql } from 'react-apollo'; import DownloadCommentHistory from '../components/DownloadCommentHistory'; import { withFragments } from 'plugin-api/beta/client/hocs'; -import { withRequestDownloadLink } from '../mutations'; +import { withRequestDownloadLink } from '../hocs'; class DownloadCommentHistoryContainer extends Component { static propTypes = { diff --git a/plugins/talk-plugin-profile-data/client/mutations.js b/plugins/talk-plugin-profile-data/client/hocs/index.js similarity index 100% rename from plugins/talk-plugin-profile-data/client/mutations.js rename to plugins/talk-plugin-profile-data/client/hocs/index.js