Updated shop reducer items to be array not immutable list

• Updated:
- shop reducer items to be array not immutable list
This commit is contained in:
mgabdev 2020-09-14 11:44:34 -05:00
parent 20ef23659c
commit 0de2aad117

View File

@ -11,7 +11,7 @@ import {
const initialState = ImmutableMap({
featured: ImmutableMap({
items: ImmutableList(),
items: [],
isError: false,
isLoading: false,
}),