Skip to content

Commit

Permalink
fix(DashboardValidatorManagmentModal): add validators by `withdrawal …
Browse files Browse the repository at this point in the history
…credentials`
  • Loading branch information
Enzo-Parodi authored and enzo-bitfly committed Jan 13, 2025
1 parent 3f6ef1a commit a72be22
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ type ValidatorUpdateBody = {
graffiti?: string,
group_id?: number,
validators?: number[],
withdrawal_address?: string,
withdrawal_credential?: string,
}
const size = computed(() => {
Expand Down Expand Up @@ -108,7 +108,7 @@ const changeGroup = async (body: ValidatorUpdateBody, groupId?: number) => {
!body.validators?.length
&& !body.deposit_address
&& !body.graffiti
&& !body.withdrawal_address
&& !body.withdrawal_credential
) {
warn('no validators selected to change group')
return
Expand Down

0 comments on commit a72be22

Please sign in to comment.