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 f8368e69..394c92e3 100644
--- a/apps/frontend/src/components/launches/helpers/pick.platform.component.tsx
+++ b/apps/frontend/src/components/launches/helpers/pick.platform.component.tsx
@@ -147,13 +147,6 @@ export const PickPlatforms: FC<{
);
const handler = async ({ integrationsId }: { integrationsId: string[] }) => {
- console.log(
- 'setSelectedIntegration',
- integrations,
- integrationsId,
- dayjs().unix()
- );
-
const selected = selectedIntegrations.map((p) => p.id);
const notToRemove = selected.filter((p) => integrationsId.includes(p));
const toAdd = integrationsId.filter((p) => !selected.includes(p));
@@ -225,7 +218,7 @@ export const PickPlatforms: FC<{
>
)}
@@ -347,7 +340,7 @@ export const PickPlatforms: FC<{
>
diff --git a/apps/frontend/src/components/layout/click.outside.tsx b/apps/frontend/src/components/layout/click.outside.tsx
new file mode 100644
index 00000000..0e713964
--- /dev/null
+++ b/apps/frontend/src/components/layout/click.outside.tsx
@@ -0,0 +1,23 @@
+import { useEffect } from 'react';
+
+export const useClickOutside = (callback: () => Promise