Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xsalonx committed Apr 11, 2024
1 parent 8717bc9 commit 3c2b437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/public/services/qcFlags/qcFlagTypesProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class QcFlagTypesProvider extends Observable {
_load() {
this._notArchived$.setCurrent(RemoteData.loading());
getRemoteData('/api/qcFlagTypes').then(
({ data: qcFlagTypes }) => this._notArchived$setCurrent(RemoteData.success(qcFlagTypes)),
({ data: qcFlagTypes }) => this._notArchived$.setCurrent(RemoteData.success(qcFlagTypes)),
(error) => this._notArchived$.setCurrent(RemoteData.failure(error)),
);
}
Expand Down

0 comments on commit 3c2b437

Please sign in to comment.