Skip to content

Commit

Permalink
fix map import (#2479)
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com>
  • Loading branch information
igorDykhta committed Dec 15, 2023
1 parent 2024a6d commit b481611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reducers/src/combined-updaters.ts
Expand Up @@ -163,7 +163,7 @@ export const addDataToMapUpdater = (
// check if progresive loading dataset by bataches, and update visState directly
const isProgressiveLoading =
Array.isArray(datasets) &&
datasets[0].info.format === 'arrow' &&
datasets[0]?.info.format === 'arrow' &&
datasets[0].info.id &&
datasets[0].info.id in state.visState.datasets;
if (isProgressiveLoading) {
Expand Down

0 comments on commit b481611

Please sign in to comment.