Skip to content

Commit 58d1286

Browse files
committed
chore: some console
Signed-off-by: amitamrutiya <[email protected]>
1 parent f970367 commit 58d1286

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/custom/UsersTable/UsersTable.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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);

src/custom/Workspaces/WorkspaceViewsTable.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)