diff --git a/functions/src/scripts/backfill-comment-types.ts b/functions/src/scripts/backfill-comment-types.ts index cce1c85d..6b61170e 100644 --- a/functions/src/scripts/backfill-comment-types.ts +++ b/functions/src/scripts/backfill-comment-types.ts @@ -8,7 +8,7 @@ if (require.main === module) { const firestore = app.firestore() const commentsRef = firestore.collectionGroup('comments') commentsRef.get().then(async (commentsSnaps) => { - log(`Loaded ${commentsSnaps.size} contracts.`) + log(`Loaded ${commentsSnaps.size} comments.`) const needsFilling = commentsSnaps.docs.filter((ct) => { return !('commentType' in ct.data()) })