fix: clear search results on new search. fix: related category title too long.

This commit is contained in:
Kentai Radiquum 2024-07-14 12:39:27 +05:00
parent f8a6d18c37
commit 5aa8b1103e
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 2 additions and 1 deletions

View file

@ -23,7 +23,7 @@ export const RelatedSection = (props) => {
);
})}
</div>
<div className="flex flex-col items-center justify-center flex-1 gap-2">
<div className="flex flex-col items-center justify-center flex-1 gap-2 max-w-[400px] mx-auto">
<h1 className="text-2xl font-bold">{props.name_ru}</h1>
<p>
{props.release_count} {declension} во франшизе

View file

@ -72,6 +72,7 @@ export function SearchPage() {
className="max-w-full mx-auto"
onSubmit={(e) => {
e.preventDefault();
setContent(null)
setQuery(e.target[0].value.trim());
router.push(`/search?q=${e.target[0].value.trim()}`);
}}