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;