How can I remove the overlay loader completely from the table? (Table used: https://github.com/mbrn/material-table)
You can use OverlayLoading field to remove the overlay loader style of material-table.
<MaterialTable
  columns={columns}
  data={...}
  components={{
    OverlayLoading: props => (<div></div>)
  }}
/>
                        You can change loadingType to linear in options:
<MaterialTable
  columns={columns}
  data={...}
  options={{
    loadingType: 'linear'
  }}
/>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With