Skip to content

Commit 683c703

Browse files
committed
style: Format return statement in verification code service
1 parent a13275d commit 683c703

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/src/services/verification_code_storage_service.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,8 @@ class InMemoryVerificationCodeStorageService
245245
if (entry == null || entry.isExpired || entry.code != linkCode) {
246246
return null;
247247
}
248-
return entry.emailToLink; // Return the email associated with this valid code
248+
return entry
249+
.emailToLink; // Return the email associated with this valid code
249250
}
250251

251252
@override

0 commit comments

Comments
 (0)