diff --git a/src/material-table.js b/src/material-table.js index 357cccd2..88f4c74d 100644 --- a/src/material-table.js +++ b/src/material-table.js @@ -1042,7 +1042,7 @@ export default class MaterialTable extends React.Component { renderData={this.state.renderData} data={this.state.data} renderSummaryRow={this.props.renderSummaryRow} - currentPage={this.state.currentPage} + currentPage={this.isRemoteData() ? 0 : this.state.currentPage} initialFormData={props.initialFormData} pageSize={this.state.pageSize} columns={this.state.columns}