Skip to content

Commit

Permalink
lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
sulphite committed Apr 24, 2024
1 parent 0c1fdb2 commit e5982eb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/commandCenter/commands/Partify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export const Partify: Command = {
options: [
{
name: 'theme',
description: 'what kind of party? e.g. "halloween skeletons party games"',
description:
'what kind of party? e.g. "halloween skeletons party games"',
type: ApplicationCommandOptionType.String,
required: true,
},
Expand All @@ -40,7 +41,7 @@ export const Partify: Command = {
interaction.options.get('theme')?.value as string,
partySystemPrompt
)
let partyJson = JSON.parse(generatedPartyIdea)
const partyJson = JSON.parse(generatedPartyIdea)
console.log(partyJson)
// this gives us an object to use in creating the event
// { name: string, description: string }
Expand Down

0 comments on commit e5982eb

Please sign in to comment.