feat(Label): Use capability-aware label availability in websocket injection.
This commit is contained in:
@@ -394,7 +394,8 @@ void main() {
|
||||
|
||||
when(emailReceiveManager.pendingSharedFileInfo).thenAnswer((_) => BehaviorSubject.seeded([]));
|
||||
when(downloadController.downloadUIAction).thenAnswer((_) => Rxn(DownloadUIAction.idle));
|
||||
when(labelController.isLabelSettingEnabled).thenAnswer((_) => RxBool(false));
|
||||
final isLabelSettingEnabled = RxBool(false);
|
||||
when(labelController.isLabelSettingEnabled).thenReturn(isLabelSettingEnabled);
|
||||
|
||||
Get.put<MailboxDashBoardController>(mailboxDashboardController);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user