@@ -30,7 +30,7 @@ export default class BrowserCell extends Component {
3030 } ;
3131 }
3232
33- async renderCellContent ( ) {
33+ renderCellContent ( ) {
3434 let content = this . props . value ;
3535 let isNewRow = this . props . row < 0 ;
3636 this . copyableValue = content ;
@@ -53,7 +53,7 @@ export default class BrowserCell extends Component {
5353 content = < span > </ span > ;
5454 classes . push ( styles . empty ) ;
5555 } else if ( this . props . type === 'Pointer' ) {
56- const defaultPointerKey = await ColumnPreferences . getPointerDefaultKey ( this . props . appId , this . props . value . className ) ;
56+ const defaultPointerKey = ColumnPreferences . getPointerDefaultKey ( this . props . appId , this . props . value . className ) ;
5757 let dataValue = this . props . value . id ;
5858 if ( defaultPointerKey !== 'objectId' ) {
5959 dataValue = this . props . value . get ( defaultPointerKey ) ;
@@ -175,9 +175,9 @@ export default class BrowserCell extends Component {
175175 this . setState ( { ...this . state , content, classes } )
176176 }
177177
178- async componentDidUpdate ( prevProps ) {
178+ componentDidUpdate ( prevProps ) {
179179 if ( this . props . value !== prevProps . value ) {
180- await this . renderCellContent ( ) ;
180+ this . renderCellContent ( ) ;
181181 }
182182 if ( this . props . current ) {
183183 const node = this . cellRef . current ;
0 commit comments