Skip to content

Commit

Permalink
fix(networks): types
Browse files Browse the repository at this point in the history
  • Loading branch information
ahonestla committed Oct 21, 2024
1 parent 47a4f49 commit 5547c9e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/pages/networks/components/clusters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ function ClusterItem({ currentTab, community, setFocusItem }: ClusterItemArgs) {
<ModalContent>
{community?.publications?.map((publication) => (
<li className="fr-mt-1w">
<Link href={window?.location?.href?.split("/networks")[0] + "/publications/" + encode(publication.id)}>
<Link
href={window?.location?.href?.split("/networks")[0] + "/publications/" + encode(publication.id as string)}
>
{publication.title}
</Link>
</li>
Expand Down

0 comments on commit 5547c9e

Please sign in to comment.