Remove extra quote from report string

This commit is contained in:
Jackson Harper
2022-07-14 20:33:06 -07:00
parent f85b037d93
commit cb506fcf93

View File

@ -20,7 +20,7 @@ export class ContentDisplayReportSubscriber
async afterInsert(event: InsertEvent<ContentDisplayReport>): Promise<void> {
const report = event.entity
const message = `A new content display report was created by:
${report.userId} for URL': ${report.originalUrl}
${report.userId} for URL: ${report.originalUrl}
${report.reportComment}`
console.log(message)