diff --git a/frontend/app/components/ReleaseList/ReleaseList.jsx b/frontend/app/components/ReleaseList/ReleaseList.jsx
index 2ff6b8d..e5d39b2 100644
--- a/frontend/app/components/ReleaseList/ReleaseList.jsx
+++ b/frontend/app/components/ReleaseList/ReleaseList.jsx
@@ -5,29 +5,58 @@ export const ReleaseList = (props) => {
return (
-
+
+
+
);
};
diff --git a/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx b/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx
index da73865..bda0c70 100644
--- a/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx
+++ b/frontend/app/components/ReleasesOverview/ReleasesOverview.jsx
@@ -6,9 +6,18 @@ export default function ReleasesOverview(props) {
return (
<>
-
+
)}
-
+
-
+
+
+
+ {props.chips && (
+
+ {props.chips.map((item) => {
+ return (
+
+ );
+ })}
+
+ )}
+
+
+
+
+
+
{props.releases ? (
<>
-
+
diff --git a/frontend/app/components/UserProfile/UserProfile.jsx b/frontend/app/components/UserProfile/UserProfile.jsx
index 8cfc3dd..4e8d426 100644
--- a/frontend/app/components/UserProfile/UserProfile.jsx
+++ b/frontend/app/components/UserProfile/UserProfile.jsx
@@ -216,7 +216,6 @@ export const UserProfile = (props) => {
{lastWatched.map((item) => {
return (
{
item.last_view_episode.name ||
`${item.last_view_episode.position + 1} серия`
}
- height={400}
/>
);
})}