Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LarmuseauNiels committed Apr 20, 2023
1 parent 03f20cb commit 630ca9b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions interactions/commands/referrals.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ module.exports = {
async execute(interaction) {
// add the code for showing user's referrals here
let member = await global.client.prisma.members.findUnique({
where: { ID: interaction.user.id },
include: {
Refferals_MembersToRefferals_refferer : true,
}
}
where: { ID: interaction.user.id },
include: {
Refferals_MembersToRefferals_refferer: true,
},
});
},
isGuild: true,
};

0 comments on commit 630ca9b

Please sign in to comment.