File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -116,7 +116,6 @@ const UsersTable: React.FC<UsersTableProps> = ({
116116 handleSuccess ( `${ data [ 4 ] ? data [ 4 ] : '' } ${ data [ 5 ] ? data [ 5 ] : '' } removed from team` ) ;
117117 } )
118118 . catch ( ( err : any ) => {
119- console . log ( 'heya err' , err ) ;
120119 const error = err . response ?. data ?. message || 'Failed to remove user from team' ;
121120 if ( err . response . status === 404 ) {
122121 handleInfo ( error ) ;
Original file line number Diff line number Diff line change @@ -94,7 +94,6 @@ const WorkspaceViewsTable: React.FC<ViewsTableProps> = ({
9494 order : sortOrder ,
9595 expandUser : true
9696 } ) ;
97- console . log ( 'kutrond' , viewsOfWorkspace ) ;
9897 const { width } = useWindowDimensions ( ) ;
9998 const [ unassignviewFromWorkspace ] = useUnassignViewFromWorkspaceMutation ( ) ;
10099 const columns : MUIDataTableColumn [ ] = [
@@ -132,7 +131,6 @@ const WorkspaceViewsTable: React.FC<ViewsTableProps> = ({
132131 sort : false ,
133132 searchable : false ,
134133 customBodyRender : ( value : string , tableMeta : MUIDataTableMeta ) => {
135- console . log ( 'tableMeta' , tableMeta ) ;
136134 const getValidColumnValue = (
137135 rowData : any ,
138136 columnName : string ,
You can’t perform that action at this time.
0 commit comments