File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,6 @@ const UsersTable: React.FC<UsersTableProps> = ({
116
116
handleSuccess ( `${ data [ 4 ] ? data [ 4 ] : '' } ${ data [ 5 ] ? data [ 5 ] : '' } removed from team` ) ;
117
117
} )
118
118
. catch ( ( err : any ) => {
119
- console . log ( 'heya err' , err ) ;
120
119
const error = err . response ?. data ?. message || 'Failed to remove user from team' ;
121
120
if ( err . response . status === 404 ) {
122
121
handleInfo ( error ) ;
Original file line number Diff line number Diff line change @@ -94,7 +94,6 @@ const WorkspaceViewsTable: React.FC<ViewsTableProps> = ({
94
94
order : sortOrder ,
95
95
expandUser : true
96
96
} ) ;
97
- console . log ( 'kutrond' , viewsOfWorkspace ) ;
98
97
const { width } = useWindowDimensions ( ) ;
99
98
const [ unassignviewFromWorkspace ] = useUnassignViewFromWorkspaceMutation ( ) ;
100
99
const columns : MUIDataTableColumn [ ] = [
@@ -132,7 +131,6 @@ const WorkspaceViewsTable: React.FC<ViewsTableProps> = ({
132
131
sort : false ,
133
132
searchable : false ,
134
133
customBodyRender : ( value : string , tableMeta : MUIDataTableMeta ) => {
135
- console . log ( 'tableMeta' , tableMeta ) ;
136
134
const getValidColumnValue = (
137
135
rowData : any ,
138
136
columnName : string ,
You can’t perform that action at this time.
0 commit comments