Skip to content

Commit

Permalink
Fix event handler naming for delete confirmation in team members page
Browse files Browse the repository at this point in the history
  • Loading branch information
rbjornstad committed Dec 12, 2024
1 parent 97a3d06 commit 7d343c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/team/[team]/(teamPages)/members/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
bind:open={deleteUserOpen}
confirmText="Delete"
variant="danger"
on:confirm={async () => {
onconfirm={async () => {
await deleteTeamMember.mutate({ input: { teamSlug: teamSlug, userEmail: userId } });
refetch();
}}
Expand Down

0 comments on commit 7d343c3

Please sign in to comment.