diff --git a/opentech/static_src/src/app/src/SubmissionsByRoundApp.js b/opentech/static_src/src/app/src/SubmissionsByRoundApp.js index 640776b6087d2fdf34bade90c4f54c5eb17ece80..6c585f5bd43c274fbe08f1fba82c9324a519b4dd 100644 --- a/opentech/static_src/src/app/src/SubmissionsByRoundApp.js +++ b/opentech/static_src/src/app/src/SubmissionsByRoundApp.js @@ -34,17 +34,13 @@ class SubmissionsByRoundApp extends React.Component { {this.state.detailOpen && <DetailView> - {this.renderSubmissionsByRound()} + <SubmissionsByRoundContainer roundId={this.props.roundId} /> <DisplayPanel /> </DetailView> } </> ) } - - renderSubmissionsByRound() { - return <SubmissionsByRoundContainer roundId={this.props.roundId} />; - } }