frontend: update recently watched in user profile

This commit is contained in:
Kentai Radiquum 2024-04-28 00:11:47 +05:00
parent 7b9ad72ac2
commit 4f680ca717
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -212,7 +212,7 @@ export const UserProfile = (props) => {
<i>tab_recent</i> <i>tab_recent</i>
<h5>Недавно просмотрено</h5> <h5>Недавно просмотрено</h5>
</div> </div>
<nav className="s12 scroll"> <nav className="s12 scroll padding">
{lastWatched.map((item) => { {lastWatched.map((item) => {
return ( return (
<ReleaseCard <ReleaseCard
@ -222,7 +222,7 @@ export const UserProfile = (props) => {
title={item.title_ru} title={item.title_ru}
poster={item.image} poster={item.image}
description={item.last_view_episode.name} description={item.last_view_episode.name}
height={440} height={400}
/> />
); );
})} })}