This commit is contained in:
Timothy J. Baek 2024-06-24 14:00:48 -07:00
parent 68b3cce0fd
commit 0f4f01cee9

View File

@ -534,7 +534,7 @@
const createdAtDate = new Date(createdAtTimestamp * 1000) const createdAtDate = new Date(createdAtTimestamp * 1000)
.toISOString() .toISOString()
.split('T')[0]; .split('T')[0];
acc.push(`${index + 1}. [${createdAtDate}]. ${doc[0]}`); acc.push(`${index + 1}. [${createdAtDate}]. ${doc}`);
return acc; return acc;
}, []); }, []);
} }