[Glitch] Fix use of deprecated `Iterable.isIndexed` from immutable
Port 1bf6195763
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
fb48fc4cce
commit
00f410a089
|
@ -1,4 +1,4 @@
|
||||||
import { Iterable, fromJS } from 'immutable';
|
import { fromJS, isIndexed } from 'immutable';
|
||||||
|
|
||||||
import { hydrateCompose } from './compose';
|
import { hydrateCompose } from './compose';
|
||||||
import { importFetchedAccounts } from './importer';
|
import { importFetchedAccounts } from './importer';
|
||||||
|
@ -10,7 +10,7 @@ export const STORE_HYDRATE_LAZY = 'STORE_HYDRATE_LAZY';
|
||||||
|
|
||||||
const convertState = rawState =>
|
const convertState = rawState =>
|
||||||
fromJS(rawState, (k, v) =>
|
fromJS(rawState, (k, v) =>
|
||||||
Iterable.isIndexed(v) ? v.toList() : v.toMap());
|
isIndexed(v) ? v.toList() : v.toMap());
|
||||||
|
|
||||||
const applyMigrations = (state) => {
|
const applyMigrations = (state) => {
|
||||||
return state.withMutations(state => {
|
return state.withMutations(state => {
|
||||||
|
|
Loading…
Reference in New Issue