Skip to content

Commit

Permalink
chore: some console
Browse files Browse the repository at this point in the history
Signed-off-by: amitamrutiya <[email protected]>
  • Loading branch information
amitamrutiya committed Jan 31, 2025
1 parent f970367 commit 58d1286
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/custom/UsersTable/UsersTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ const UsersTable: React.FC<UsersTableProps> = ({
handleSuccess(`${data[4] ? data[4] : ''} ${data[5] ? data[5] : ''} removed from team`);
})
.catch((err: any) => {
console.log('heya err', err);
const error = err.response?.data?.message || 'Failed to remove user from team';
if (err.response.status === 404) {
handleInfo(error);
Expand Down
2 changes: 0 additions & 2 deletions src/custom/Workspaces/WorkspaceViewsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ const WorkspaceViewsTable: React.FC<ViewsTableProps> = ({
order: sortOrder,
expandUser: true
});
console.log('kutrond', viewsOfWorkspace);
const { width } = useWindowDimensions();
const [unassignviewFromWorkspace] = useUnassignViewFromWorkspaceMutation();
const columns: MUIDataTableColumn[] = [
Expand Down Expand Up @@ -132,7 +131,6 @@ const WorkspaceViewsTable: React.FC<ViewsTableProps> = ({
sort: false,
searchable: false,
customBodyRender: (value: string, tableMeta: MUIDataTableMeta) => {
console.log('tableMeta', tableMeta);
const getValidColumnValue = (
rowData: any,
columnName: string,
Expand Down

0 comments on commit 58d1286

Please sign in to comment.