diff --git a/apps/frontend/src/components/new-launch/picks.socials.component.tsx b/apps/frontend/src/components/new-launch/picks.socials.component.tsx index e1c2f04f..c966a177 100644 --- a/apps/frontend/src/components/new-launch/picks.socials.component.tsx +++ b/apps/frontend/src/components/new-launch/picks.socials.component.tsx @@ -12,15 +12,19 @@ export const PicksSocialsComponent: FC<{ toolTip?: boolean }> = ({ }) => { const exising = useExistingData(); - const { locked, addOrRemoveSelectedIntegration, integrations, selectedIntegrations } = - useLaunchStore( - useShallow((state) => ({ - integrations: state.integrations, - selectedIntegrations: state.selectedIntegrations, - addOrRemoveSelectedIntegration: state.addOrRemoveSelectedIntegration, - locked: state.locked, - })) - ); + const { + locked, + addOrRemoveSelectedIntegration, + integrations, + selectedIntegrations, + } = useLaunchStore( + useShallow((state) => ({ + integrations: state.integrations, + selectedIntegrations: state.selectedIntegrations, + addOrRemoveSelectedIntegration: state.addOrRemoveSelectedIntegration, + locked: state.locked, + })) + ); return (