Removed console log.

This commit is contained in:
Tom Butcher 2025-12-12 20:48:44 +00:00
parent 4949e727bf
commit ef00ad8c31

View File

@ -105,7 +105,6 @@ const renderText = (text = [], navigate) => {
if (typeof text === "string" || typeof text === "number") {
return text;
}
console.log("text", text, text.map);
return text.map((item, index) => {
return renderAnnotation(item, navigate, index);
});