File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
components/failedmessages Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ export interface ErrorResponse {
99
1010export class MessageGroupClient {
1111 serviceControlStore : ServiceControlStore ;
12- constructor ( store ?: ServiceControlStore ) {
12+ constructor ( ) {
1313 //this module is only called from within view setup or other pinia stores, so this call is lifecycle safe
14- this . serviceControlStore = store ?? useServiceControlStore ( ) ;
14+ this . serviceControlStore = useServiceControlStore ( ) ;
1515 }
1616
1717 public async getExceptionGroups ( classifier : string = "" ) {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export const useDeletedMessageGroupsStore = defineStore("DeletedMessageGroupsSto
3232 let undismissedRestoreGroups : ExtendedFailureGroupView [ ] = [ ] ;
3333
3434 const serviceControlStore = useServiceControlStore ( ) ;
35- const messageGroupClient = new MessageGroupClient ( serviceControlStore ) ;
35+ const messageGroupClient = new MessageGroupClient ( ) ;
3636
3737 const cookies = useCookies ( ) ;
3838
You can’t perform that action at this time.
0 commit comments