[mob] Fix lint

This commit is contained in:
Neeraj Gupta 2025-01-29 17:13:12 +05:30
parent ebd4b89f34
commit ac08d5b37d

View File

@ -202,7 +202,7 @@ class PersonService {
clusterID: clusterID,
);
if (data.email != null) {
_resetEmailToNameCache();
_resetEmailToNameCache().ignore();
}
return PersonEntity(result.id, data);
}
@ -291,7 +291,7 @@ class PersonService {
justName.data.logStats();
if (entity.data.email != null) {
_resetEmailToNameCache();
_resetEmailToNameCache().ignore();
}
} else {
await entityService.deleteEntry(personID);
@ -299,7 +299,7 @@ class PersonService {
if (entity != null) {
if (entity.data.email != null) {
_resetEmailToNameCache();
_resetEmailToNameCache().ignore();
}
}
}