Fix prettier problems

This commit is contained in:
Tiago Jacobs 2022-04-16 18:48:57 -03:00
parent 115fb7f9a3
commit b521ab1c7d

View File

@ -62,7 +62,7 @@ export const ListPortals = ({navigation}: IListPortalsDTO) => {
portalsStorage = JSON.parse(portalsStorage as string);
const newPortalStorage = portalsStorage?.filter(
(portalItem: IItemDelete) => {
if (item.name == portalItem.name) {
if (item.name === portalItem.name) {
return false;
}
return portalItem;