Skip to content

Commit

Permalink
Remove unnecessary non-null assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Rian8337 committed Nov 24, 2024
1 parent d1a67e8 commit 69c8270
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ export const run: SlashSubcommand<true>["run"] = async (_, interaction) => {
buttons,
);

const message = await interaction.channel!.send({
const message = await interaction.channel.send({
content: MessageCreator.createWarn(
localization.getTranslation("guessBeatmap"),
),
Expand Down

0 comments on commit 69c8270

Please sign in to comment.