Skip to content

Commit

Permalink
TF-2177 Remove import unnecessary avoid build failed on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dab246 authored and hoangdat committed Oct 24, 2023
1 parent 3d626b1 commit d59e216
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class GetCredentialInteractor {
try {
final baseUrl = await credentialRepository.getBaseUrl();
final authenticationInfo = await credentialRepository.getAuthenticationInfoStored();
if (isCredentialValid(baseUrl) && authenticationInfo != null) {
if (isCredentialValid(baseUrl)) {
return Right(GetCredentialViewState(
baseUrl,
UserName(authenticationInfo.username),
Expand Down
2 changes: 1 addition & 1 deletion lib/features/sending_queue/domain/model/sending_email.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'dart:convert';
import 'package:core/core.dart';
import 'package:core/domain/extensions/datetime_extension.dart';
import 'package:core/utils/platform_info.dart';
import 'package:equatable/equatable.dart';
import 'package:flutter_date_range_picker/flutter_date_range_picker.dart';
import 'package:jmap_dart_client/http/converter/email_id_nullable_converter.dart';
Expand Down

0 comments on commit d59e216

Please sign in to comment.