Skip to content

Commit

Permalink
refactor: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
hxsggsz committed May 10, 2024
1 parent a0076a3 commit 488a955
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/commands/aulas/utils/getMessageOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Message } from 'discord.js'
export function getMessageOptions(message: Message<true>) {
const matchTitle = message.content.match(/title: \s*(.*)/)
const matchLink = message.content.match(/link: \s*(.*)/)
console.log(matchTitle, matchLink)

if (matchTitle && matchLink) {
return { name: matchTitle[1], value: matchLink[1] }
Expand Down

0 comments on commit 488a955

Please sign in to comment.