Skip to content

Commit

Permalink
Fix version number not correct
Browse files Browse the repository at this point in the history
  • Loading branch information
lopes-vincent committed Aug 2, 2023
1 parent 1f8a167 commit 6716721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/modules/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default class App extends Component {
<SearchInput doSearch={this.doSearch} defaulValue={this.state.search}/>
</div>
<div className="row">
{modules.map((module, index) => <Module {...module} />)}
{modules.map((module, index) => <Module key={module.name} {...module} />)}
</div>
<div className="row">
{nextPageLink !== null ? <button className="button button--block button--secondary" onClick={() => {this.getModules(nextPageLink)}}>See more</button> : null}
Expand Down

0 comments on commit 6716721

Please sign in to comment.