Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gtarpenning committed Oct 11, 2024
1 parent 849b490 commit 7ccdcea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ const usePaginatedPlots = (
return barPlotData
.slice(startIdx, endIdx)
.map((plot, index) => (
<BarPlotBox key={`bar-${startIndex + index}`} plot={plot} />
<BarPlotBox key={`bar-${startIdx + index}`} plot={plot} />
));
}
}, [currentPage, plotsPerPage, filteredData, barPlotData]);
Expand Down

0 comments on commit 7ccdcea

Please sign in to comment.