From b521ab1c7d6197f9354a60876490d65ecf6fcc72 Mon Sep 17 00:00:00 2001 From: Tiago Jacobs Date: Sat, 16 Apr 2022 18:48:57 -0300 Subject: [PATCH] Fix prettier problems --- react-native/app/pages/list_portals/component.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native/app/pages/list_portals/component.tsx b/react-native/app/pages/list_portals/component.tsx index 9e874aa..8dc05be 100644 --- a/react-native/app/pages/list_portals/component.tsx +++ b/react-native/app/pages/list_portals/component.tsx @@ -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;