Fix untranslated keys being rendered in /help dialog (#90)

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2024-10-01 13:33:07 +01:00 committed by GitHub
parent 39a0f6e17b
commit f33e802627
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,7 +45,7 @@ const SlashCommandHelpDialog: React.FC<IProps> = ({ onFinished }) => {
<strong>{cmd.getCommand()}</strong> <strong>{cmd.getCommand()}</strong>
</td> </td>
<td>{cmd.args}</td> <td>{cmd.args}</td>
<td>{cmd.description}</td> <td>{_t(cmd.description)}</td>
</tr>, </tr>,
); );
}); });