remove console log

This commit is contained in:
Henry Jameson 2022-03-29 20:22:12 +03:00
parent c83f3eddab
commit 1638d66d41

View file

@ -1194,7 +1194,6 @@ const chats = ({ credentials }) => {
return fetch(PLEROMA_CHATS_URL, { headers: authHeaders(credentials) })
.then((data) => data.json())
.then((data) => {
if (typeof data.map !== 'function') console.log(data)
return { chats: data.map(parseChat).filter(c => c) }
})
}