Skip to content

Commit

Permalink
oi
Browse files Browse the repository at this point in the history
  • Loading branch information
Andcool-Systems committed Oct 13, 2024
1 parent 7521887 commit 84424d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/me/notifications/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const Notifications = () => {
<div id="sidebar" className={Style.container} style={notifications != null ? { opacity: "1", transform: "translateY(0)" } : { opacity: "0", transform: "translateY(50px)" }}>
{notifications?.data.length > 0 ?
<>
{notifications?.total_count > 5 && <Paginator total_count={notifications?.total_count} take={5} onChange={(page) => setPage(page || 0)} />}
{notifications?.total_count > 5 && <Paginator total_count={notifications?.total_count} take={5} onChange={(page) => setPage(page || 0)} page={page} />}
{notifications_el}
</> :
<div className={style_sidebar.animated} style={notifications != null ? { opacity: "1", transform: "translateY(0)", width: "100%" } : { opacity: "0", transform: "translateY(50px)", width: "100%" }}>
Expand Down

0 comments on commit 84424d5

Please sign in to comment.