Skip to content

Commit bfba560

Browse files
committed
I think that was uncessary
1 parent d268203 commit bfba560

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/services/discord/modules/webhook-handler.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ export default async (bot: DiscordBot): Promise<void> => {
521521
text.setContent(`# [Chatsound Update](${commit.url})`)
522522
);
523523

524-
container.addSeparatorComponents(sep => sep);
524+
container.addSeparatorComponents();
525525

526526
const addedSounds = GroupSoundFilesByFolder(commit.added ?? []);
527527
const removedSounds = GroupSoundFilesByFolder(commit.removed ?? []);
@@ -539,7 +539,7 @@ export default async (bot: DiscordBot): Promise<void> => {
539539
)
540540
);
541541

542-
container.addSeparatorComponents(sep => sep);
542+
container.addSeparatorComponents();
543543
}
544544
if (commit.removed && removedSounds.size > 0) {
545545
container.addTextDisplayComponents(text =>
@@ -552,7 +552,7 @@ export default async (bot: DiscordBot): Promise<void> => {
552552
)
553553
);
554554

555-
container.addSeparatorComponents(sep => sep);
555+
container.addSeparatorComponents();
556556
}
557557
if (commit.modified && modifiedSounds.size > 0) {
558558
container.addTextDisplayComponents(text =>
@@ -565,7 +565,7 @@ export default async (bot: DiscordBot): Promise<void> => {
565565
)
566566
);
567567

568-
container.addSeparatorComponents(sep => sep);
568+
container.addSeparatorComponents();
569569
}
570570
container.addTextDisplayComponents(text =>
571571
text.setContent(

0 commit comments

Comments
 (0)