mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
More debugging
This commit is contained in:
parent
1e2c3b1f8f
commit
1e0df9016c
1 changed files with 10 additions and 1 deletions
|
|
@ -823,7 +823,16 @@ export function LibraryContainer(props: LibraryContainerProps): JSX.Element {
|
|||
}
|
||||
>
|
||||
{libraryItems.map((item) => {
|
||||
return <Box key={item.node.id}>{item.node.title}</Box>
|
||||
return (
|
||||
<Box
|
||||
key={item.node.id}
|
||||
onClick={() => {
|
||||
router.push(`${viewerData?.profile.username}/${item.node.slug}`)
|
||||
}}
|
||||
>
|
||||
{item.node.title}
|
||||
</Box>
|
||||
)
|
||||
})}
|
||||
</InfiniteScroll>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue