refactor: related releases page

This commit is contained in:
Kentai Radiquum 2025-03-25 23:35:20 +05:00
parent 6cade5a7d0
commit 4496a7280b
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 115 additions and 10 deletions

View file

@ -1,6 +1,5 @@
import Link from "next/link";
import { Poster } from "./Poster";
import { Chip } from "../Chip/Chip";
import { ReleaseChips } from "./Chips";
const profile_lists = {
@ -71,7 +70,7 @@ export const PosterWithStuff = (props: {
if (props.genres) {
const genres_array = props.genres.split(",");
genres_array.forEach((genre) => {
genres.push(genre);
genres.push(genre.trim());
});
}