We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dff1a51 + 2d6aca9 commit 39c52c4Copy full SHA for 39c52c4
src/generator/transcript.tsx
@@ -55,7 +55,7 @@ export default async function DiscordMessages({ messages, channel, callbacks, ..
55
{options.footerText
56
? options.footerText
57
.replaceAll('{number}', messages.length.toString())
58
- .replace('{s}', messages.length > 1 ? 's' : '')
+ .replaceAll('{s}', messages.length > 1 ? 's' : '')
59
: `Exported ${messages.length} message${messages.length > 1 ? 's' : ''}.`}{' '}
60
{options.poweredBy ? (
61
<span style={{ textAlign: 'center' }}>
0 commit comments