diff --git a/apps/frontend/src/components/launches/helpers/pick.platform.component.tsx b/apps/frontend/src/components/launches/helpers/pick.platform.component.tsx index c749b929..141c1aca 100644 --- a/apps/frontend/src/components/launches/helpers/pick.platform.component.tsx +++ b/apps/frontend/src/components/launches/helpers/pick.platform.component.tsx @@ -86,7 +86,7 @@ export const PickPlatforms: FC<{ ); return; } - if (selectedAccounts.includes(integration)) { + if (selectedAccounts.some((account) => account.id === integration.id)) { const changedIntegrations = selectedAccounts.filter( ({ id }) => id !== integration.id );