diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-10-11 19:35:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-11 19:35:37 +0200 |
commit | 18f210aff65bb6f4830386d332c721971e20bebe (patch) | |
tree | 4df1d697cf0252539d2f9f15459c10a02957b4ce /app/javascript/flavours/glitch/reducers | |
parent | b01faa7375493ee91f7e9dfa32b0af3058c8d16f (diff) |
Fix accidentally importing vanilla code in glitch-soc flavor (#1863)
Diffstat (limited to 'app/javascript/flavours/glitch/reducers')
-rw-r--r-- | app/javascript/flavours/glitch/reducers/tags.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/reducers/tags.js b/app/javascript/flavours/glitch/reducers/tags.js index d24098e39..266b21177 100644 --- a/app/javascript/flavours/glitch/reducers/tags.js +++ b/app/javascript/flavours/glitch/reducers/tags.js @@ -4,7 +4,7 @@ import { HASHTAG_FOLLOW_FAIL, HASHTAG_UNFOLLOW_REQUEST, HASHTAG_UNFOLLOW_FAIL, -} from 'mastodon/actions/tags'; +} from 'flavours/glitch/actions/tags'; import { Map as ImmutableMap, fromJS } from 'immutable'; const initialState = ImmutableMap(); |