mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-22 14:01:29 -05:00
fix(api): trim trailing space if no reporter name (#52199)
This commit is contained in:
committed by
GitHub
parent
d4e65df8b0
commit
3940eddbbb
@@ -24,7 +24,7 @@ ${reportDesc}
|
||||
|
||||
Reported by:
|
||||
Username: ${reporter.username}
|
||||
Name: ${reporter.name ?? ''}
|
||||
Name:${reporter.name ? ' ' + reporter.name : ''}
|
||||
Email: ${reporter.email}
|
||||
|
||||
Thanks and regards,
|
||||
|
||||
Reference in New Issue
Block a user