diff --git a/packages/web/components/templates/library/LibraryContainer.tsx b/packages/web/components/templates/library/LibraryContainer.tsx
index 89db8d040..5042f57b3 100644
--- a/packages/web/components/templates/library/LibraryContainer.tsx
+++ b/packages/web/components/templates/library/LibraryContainer.tsx
@@ -823,7 +823,16 @@ export function LibraryContainer(props: LibraryContainerProps): JSX.Element {
}
>
{libraryItems.map((item) => {
- return {item.node.title}
+ return (
+ {
+ router.push(`${viewerData?.profile.username}/${item.node.slug}`)
+ }}
+ >
+ {item.node.title}
+
+ )
})}
)