Skip to content

Commit d626433

Browse files
committed
linting
1 parent d055204 commit d626433

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

commands/travelguide.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -359,9 +359,7 @@ module.exports = {
359359
collector.on("collect", async (message) => {
360360
const entryIndex = parseInt(message.content.trim());
361361
if (isNaN(entryIndex) || entryIndex < 1 || entryIndex > userEntries.length) {
362-
await interaction.followUp(
363-
"Invalid entry number. No entry was deleted.",
364-
);
362+
await interaction.followUp("Invalid entry number. No entry was deleted.");
365363
return;
366364
}
367365
// Confirm entry
@@ -392,7 +390,6 @@ module.exports = {
392390
}
393391
return;
394392
});
395-
396393
});
397394

398395
collector.on("end", (collected) => {});

0 commit comments

Comments
 (0)