Skip to content

Commit

Permalink
fix: angry unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshirahh committed Dec 23, 2021
1 parent 53e2fce commit 99ff8c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export async function updateCachedGuilds(userId: string, guilds: any[]) {
},
});

const done = guilds.map(async (g: any) => {
guilds.map(async (g) => {
try {
await prisma.user.update({
where: { id: userId },
Expand Down

0 comments on commit 99ff8c5

Please sign in to comment.