Skip to content

Commit 0c4f91f

Browse files
committed
refactor: deprecate-array-prototype-extensions - removeObject()
1 parent f329f06 commit 0c4f91f

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

admin/app/components/certification-centers/creation-form.gjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ export default class CertificationCenterForm extends Component {
5353

5454
@action
5555
updateGrantedHabilitation(habilitation) {
56-
const habilitations = this.habilitations;
57-
if (habilitations.includes(habilitation)) {
58-
habilitations.removeObject(habilitation);
56+
const index = this.habilitations.indexOf(habilitation);
57+
if (index !== -1) {
58+
this.habilitations.splice(index, 1);
5959
} else {
60-
habilitations.push(habilitation);
60+
this.habilitations.push(habilitation);
6161
}
6262
}
6363

admin/app/components/certification-centers/information-edit.gjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export default class InformationEdit extends Component {
4343
async updateGrantedHabilitation(habilitation) {
4444
const habilitations = await this.form.habilitations;
4545
if (habilitations.includes(habilitation)) {
46-
habilitations.removeObject(habilitation);
46+
const index = habilitations.indexOf(habilitation);
47+
habilitations.splice(index, 1);
4748
} else {
4849
habilitations.push(habilitation);
4950
}

0 commit comments

Comments
 (0)