Skip to content

Commit

Permalink
fix: template string
Browse files Browse the repository at this point in the history
  • Loading branch information
sanriodev committed Apr 5, 2024
1 parent 491d417 commit 49a716a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/command/commands/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class VersionCommand extends ACommand {
const version = await this.versionService.getVersion();
return this.run(async () => {
if (version && version.length > 0) {
return await interaction.reply('The current version is: ${version}');
return await interaction.reply(`The current version is: ${version}`);
}
return await interaction.reply('Failed to get version');
});
Expand Down

0 comments on commit 49a716a

Please sign in to comment.