Skip to content

Commit 76d4803

Browse files
committed
removed console.logs
1 parent 96552ac commit 76d4803

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/Modals/DeleteTableModal.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,14 @@ export default function DeleteTableModal({
5050
}
5151
}
5252
}
53-
console.log('schemmmmmmmaaaaaaa', schemaStore);
5453
const response = await fetch(`/api/sql/${dbCredentials.db_type}/deleteTable`, {
5554
method: 'DELETE',
5655
headers: {
5756
'Content-Type': 'application/json',
5857
},
5958
body: JSON.stringify({ tableName: tableName }),
6059
});
61-
console.log('response on deleting tableName: ', response);
60+
6261
//delete the table object from the schemaStore object
6362
delete schemaStore[tableName];
6463
delete dataStore[tableName];

0 commit comments

Comments
 (0)