Skip to content

Commit

Permalink
Resolve DeepScan errors
Browse files Browse the repository at this point in the history
DeepScan fix attempt 1
  • Loading branch information
theimperious1 authored Nov 11, 2024
1 parent 8b06d7e commit c0c5a78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/discord/utils/techHelp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ export async function techHelpClick(interaction:ButtonInteraction) {
const techHelpButtons = new ActionRowBuilder<ButtonBuilder>()
.addComponents(
new ButtonBuilder()
.setCustomId(`techHelpOwn~${issueType}~${actor.id}`)
.setCustomId(`techHelpOwn~${issueType}~${actor?.id}`)
.setLabel('Own this issue!')
.setStyle(ButtonStyle.Primary),
new ButtonBuilder()
.setCustomId(`techHelpClose~${issueType}~${actor.id}`)
.setCustomId(`techHelpClose~${issueType}~${actor?.id}`)
.setLabel('Close this issue!')
.setStyle(ButtonStyle.Success),
);
Expand Down

0 comments on commit c0c5a78

Please sign in to comment.