remove callback

This commit is contained in:
David Taylor 2024-07-02 15:04:36 +01:00
parent e52513fa91
commit 8c52d26669
No known key found for this signature in database
GPG Key ID: 46904C18B1D3F434
1 changed files with 1 additions and 7 deletions

View File

@ -28,13 +28,7 @@ export default class extends Component {
@action
showUserNotes() {
showUserNotes(this.store, this.args.outletArgs.user.id, (count) => {
if (this.isDestroying || this.isDestroyed) {
return;
}
this.set("userNotesCount", count);
});
showUserNotes(this.store, this.args.outletArgs.user.id);
}
<template>