removed logging

This commit is contained in:
TaylorS15
2023-02-22 18:53:20 -05:00
parent 355d6e3cf2
commit 933174d530

View File

@@ -42,7 +42,6 @@ export default function APIKeyModal({
function handleCancel() {
async function getRecentDocs() {
const response = await getLocalRecentDocs();
console.log('response');
if (response) {
const parsedResponse = JSON.parse(response) as Doc;
@@ -51,7 +50,6 @@ export default function APIKeyModal({
}
getRecentDocs();
console.log('cancel');
setIsError(false);
setModalState('INACTIVE');
}