Skip to content

Commit

Permalink
fix panels var
Browse files Browse the repository at this point in the history
  • Loading branch information
Dert1129 committed Sep 30, 2024
1 parent 47ac607 commit 9159c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Packages/PackageList.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class PackageList extends Component {
}

else {
panels = this.state.packages.map((uploadPackage, index) => {
panels = applyFilters(this.props.filtering.filters, this.state.unfilteredPackages, this.props.filtering.packageTypes).map((uploadPackage, index) => {
return <PackagePanelContainer key={index} index={index} uploadPackage={uploadPackage}/>;
});
}
Expand Down

0 comments on commit 9159c27

Please sign in to comment.