Skip to content

Commit e33f680

Browse files
committed
🐛 fix: fix missing } after resolving merge conflicts
1 parent f6cccce commit e33f680

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/events/ready.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ export const readyEvent = createEvent(
1717
await fetchAndCachePublicChannelsMessages(guild, true);
1818
}
1919

20-
// Sync guides to channel
21-
try {
22-
console.log(`🔄 Starting guide sync to channel ${config.guides.channelId}...`);
23-
await syncGuidesToChannel(client, config.guides.channelId);
24-
} catch (error) {
25-
console.error('❌ Failed to sync guides:', error);
20+
// Sync guides to channel
21+
try {
22+
console.log(`🔄 Starting guide sync to channel ${config.guides.channelId}...`);
23+
await syncGuidesToChannel(client, config.guides.channelId);
24+
} catch (error) {
25+
console.error('❌ Failed to sync guides:', error);
26+
}
2627
}
2728
}
2829
);

0 commit comments

Comments
 (0)