Skip to content

Commit b9353f0

Browse files
committed
fix: lint
1 parent 472569b commit b9353f0

File tree

1 file changed

+4
-1
lines changed
  • src/apps/copilots/src/pages/copilot-opportunity-details

1 file changed

+4
-1
lines changed

src/apps/copilots/src/pages/copilot-opportunity-details/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ const CopilotOpportunityDetails: FC<{}> = () => {
6565
[profile],
6666
)
6767
const { data: copilotApplications }: { data?: CopilotApplication[] } = useCopilotApplications(opportunityId)
68-
const appliedCopilotApplications = useMemo(() => copilotApplications?.filter(item => item.userId === profile?.userId ), [copilotApplications, profile])
68+
const appliedCopilotApplications = useMemo(
69+
() => copilotApplications?.filter(item => item.userId === profile?.userId),
70+
[copilotApplications, profile],
71+
)
6972
const { data: members }: { data?: FormattedMembers[]} = useMembers(
7073
copilotApplications ? copilotApplications?.map(item => item.userId) : [],
7174
)

0 commit comments

Comments
 (0)