about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/following
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-09-09 15:16:08 +0200
committermultiple creatures <dev@multiple-creature.party>2020-02-21 04:41:38 -0600
commit257b72dc1025e7102cc02f30640fc3d482103d65 (patch)
tree8c3345ac724a969d9152e57748a3bc3f435ed540 /app/javascript/flavours/glitch/features/following
parentbbbbfbc1a25496bb8fb53a1eb5027332664a14ca (diff)
Move “export” before decorators
As this is what upstream does.

See also https://github.com/tc39/proposal-decorators/issues/69
Diffstat (limited to 'app/javascript/flavours/glitch/features/following')
-rw-r--r--app/javascript/flavours/glitch/features/following/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/following/index.js b/app/javascript/flavours/glitch/features/following/index.js
index ad1445f3a..f573fb777 100644
--- a/app/javascript/flavours/glitch/features/following/index.js
+++ b/app/javascript/flavours/glitch/features/following/index.js
@@ -23,8 +23,8 @@ const mapStateToProps = (state, props) => ({
   hasMore: !!state.getIn(['user_lists', 'following', props.params.accountId, 'next']),
 });
 
-@connect(mapStateToProps)
-export default class Following extends ImmutablePureComponent {
+export default @connect(mapStateToProps)
+class Following extends ImmutablePureComponent {
 
   static propTypes = {
     params: PropTypes.object.isRequired,