diff --git a/plugins/coral-plugin-love/client/components/LoveIcon.js b/plugins/coral-plugin-love/client/components/LoveIcon.js
deleted file mode 100644
index dd217c090..000000000
--- a/plugins/coral-plugin-love/client/components/LoveIcon.js
+++ /dev/null
@@ -1,20 +0,0 @@
-import React from 'react';
-import styles from './style.css';
-import cn from 'classnames';
-
-export default class LoveIcon extends React.Component {
-
- render() {
- const {me} = this.props.data;
- let love = me && me.roles && me.roles[0] === 'ADMIN';
-
- return (
-
-
-
- );
- }
-}
diff --git a/plugins/coral-plugin-love/client/components/style.css b/plugins/coral-plugin-love/client/components/style.css
deleted file mode 100644
index 3e8c92d5c..000000000
--- a/plugins/coral-plugin-love/client/components/style.css
+++ /dev/null
@@ -1,30 +0,0 @@
-.love {
- display: inline-block;
- }
-
-.button {
- color: #2a2a2a;
- margin: 5px 10px 5px 0px;
- background: none;
- padding: 0px;
- border: none;
- font-size: inherit;
-
- &:hover {
- color: #767676;
- cursor: pointer;
- }
-
- &.love {
- color: #c98211;
-
- &:hover {
- color: #e59614;
- cursor: pointer;
- }
- }
-}
-
-.icon {
- padding: 0 5px;
-}
diff --git a/plugins/coral-plugin-love/client/containers/LoveIcon.js b/plugins/coral-plugin-love/client/containers/LoveIcon.js
deleted file mode 100644
index 54d97bcd0..000000000
--- a/plugins/coral-plugin-love/client/containers/LoveIcon.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import {compose, gql, graphql} from 'react-apollo';
-import LoveIcon from '../components/LoveIcon';
-
-export const LOVE_QUERY = gql`
- query LoveQuery {
- me {
- status
- roles
- }
- }
-`;
-
-const withQuery = graphql(LOVE_QUERY);
-
-const enhance = compose(
- withQuery,
-);
-
-export default enhance(LoveIcon);
diff --git a/plugins/coral-plugin-love/client/index.js b/plugins/coral-plugin-love/client/index.js
index 671fd2f5a..38f32c1cb 100644
--- a/plugins/coral-plugin-love/client/index.js
+++ b/plugins/coral-plugin-love/client/index.js
@@ -3,7 +3,7 @@ import LoveButton from './LoveButton';
import translations from './translations.json';
import {loadTranslations} from '/coral-framework/services/i18n';
-Promise.all([loadTranslations(translations)]);
+loadTranslations(translations);
export default {
slots: {