Skip to content

Commit

Permalink
fix some things
Browse files Browse the repository at this point in the history
  • Loading branch information
kentcdodds committed Oct 9, 2023
1 parent ef42282 commit 20f26dd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ jobs:
- name: 📥 Download deps
uses: bahmutov/npm-install@v1

- name: 🖼 Build icons
run: npm run build:icons

- name: 🔬 Lint
run: npm run lint

Expand All @@ -51,9 +48,6 @@ jobs:
- name: 📥 Download deps
uses: bahmutov/npm-install@v1

- name: 🖼 Build icons
run: npm run build:icons

- name: 🔎 Type check
run: npm run typecheck --if-present

Expand Down
1 change: 0 additions & 1 deletion app/routes/resources.connect-epic-web/bot.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export async function addEpicWebRoleToUser(userId: string) {
await guild.members.fetch(userId)
const member = guild.members.cache.get(userId)
if (!member) return { status: 'error', error: 'Member not found' } as const
console.log(userId, member, member.roles, epicWebRoleId)
await member.roles.add(epicWebRoleId)
await member.setNickname(`${member.displayName} 🌌`)
return { status: 'success', member } as const
Expand Down

0 comments on commit 20f26dd

Please sign in to comment.