FIX: Stream management;

REFACTOR: Remove unnecessary console logs;
REFACTOR: Change "Show More" to "Show All";
REFACTOR: `CategoryPage` background set to default;
This commit is contained in:
Chris-1010
2025-02-27 16:00:10 +00:00
parent d31c7f579c
commit 4ea52c4679
3 changed files with 5 additions and 13 deletions

View File

@@ -24,15 +24,14 @@ const HomePage: React.FC<HomePageProps> = ({ variant = "default" }) => {
navigate(`/category/${categoryName}`);
};
if (isLoadingStreams || isLoadingCategories) {
console.log("No content found yet");
if (isLoadingStreams || isLoadingCategories)
return <LoadingScreen>Loading Content...</LoadingScreen>;
}
return (
<DynamicPageContent
navbarVariant="home"
className="relative min-h-screen animate-moving_bg"
contentClassName="pb-[12vh]"
>
<ListRow
type="stream"
@@ -76,7 +75,7 @@ const HomePage: React.FC<HomePageProps> = ({ variant = "default" }) => {
extraClasses="absolute right-10"
onClick={() => navigate("/categories")}
>
Show More
Show All
</Button>
</ListRow>
<Footer />