diff options
author | Thibaut Girka <thib@sitedethib.com> | 2020-05-28 14:11:38 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2020-05-28 15:14:12 +0200 |
commit | 7a74e46b770d4120890daafee51b36d1a3fa2db9 (patch) | |
tree | 27412bd492c7f44bff4259a7032d05fd0baa94c2 /app/javascript | |
parent | 39aa6301eb874963f214215d27f9ef5874c4d236 (diff) |
Fix one import being made on mastodon's codebase instead of glitch-soc's
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/flavours/glitch/features/getting_started/containers/trends_container.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/getting_started/containers/trends_container.js b/app/javascript/flavours/glitch/features/getting_started/containers/trends_container.js index 7a5268780..68568d169 100644 --- a/app/javascript/flavours/glitch/features/getting_started/containers/trends_container.js +++ b/app/javascript/flavours/glitch/features/getting_started/containers/trends_container.js @@ -1,5 +1,5 @@ import { connect } from 'react-redux'; -import { fetchTrends } from 'mastodon/actions/trends'; +import { fetchTrends } from 'flavours/glitch/actions/trends'; import Trends from '../components/trends'; const mapStateToProps = state => ({ |