🔇 Removed log used during development

This commit is contained in:
Wazbat 2023-07-05 23:29:10 +02:00
parent 3b6759566b
commit f561205d7a

View file

@ -131,11 +131,6 @@ export const twitterFetch = async (
headers: headers
});
}
if (apiRequest.status !== 200) {
const raw = await apiRequest?.clone().text();
console.log('Raw response:', raw);
console.log('Response code:', apiRequest?.status);
}
response = await apiRequest?.json();
} catch (e: unknown) {