Fix imports importing modules from vanilla flavour instead of glitch

This commit is contained in:
Thibaut Girka
2019-08-31 12:53:10 +02:00
parent cd46099e49
commit 682cfbb829
5 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
import { POLLS_IMPORT } from 'mastodon/actions/importer';
import { POLLS_IMPORT } from 'flavours/glitch/actions/importer';
import { Map as ImmutableMap, fromJS } from 'immutable';
const importPolls = (state, polls) => state.withMutations(map => polls.forEach(poll => map.set(poll.id, fromJS(poll))));