From 43d8918c95269562a34524e16465c4b9ee5b45b4 Mon Sep 17 00:00:00 2001 From: Harshal Gahlot Date: Fri, 27 Sep 2024 17:39:02 +0530 Subject: [PATCH 1/2] fixed overflow text of recommended card on /watch, first issue/pr --- .env.example | 4 ++-- src/components/shared/cards/EpisodeLists.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.env.example b/.env.example index 3797c72..27f84fc 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ -MONGODB_URI = -JWT_TOKEN = +MONGODB_URI = "mongodb+srv://18oo18oo12:@cluster0.qk8pt.mongodb.net/course" +JWT_TOKEN = < you can find it under inspect -> application -> cookies -> https://www.animetrix.xyz > # gemini api key NEXT_PUBLIC_GEMINI_API_KEY = # self host anime api url from https://github.com/consumet/api.consumet.org diff --git a/src/components/shared/cards/EpisodeLists.tsx b/src/components/shared/cards/EpisodeLists.tsx index 284f1e8..a7d29ba 100644 --- a/src/components/shared/cards/EpisodeLists.tsx +++ b/src/components/shared/cards/EpisodeLists.tsx @@ -184,11 +184,11 @@ const EpisodeLists: React.FC = ({ animeId, isStream, currentl
{currentlyPlaying == anime.number && } {anime.title ? ( -

+

{anime.number} . {anime?.title} {isFiller && "(🤓Fillter)"}

) : ( -

+

{isFiller ? "Filler Episode" : "Episode"}: {anime.number}

)} From 6ef4a40affe01327878697e9e3574657a7baa870 Mon Sep 17 00:00:00 2001 From: Harshal Gahlot Date: Fri, 27 Sep 2024 17:46:09 +0530 Subject: [PATCH 2/2] removed my mongoDB URL (didn't had password filled tho) --- .env.example | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 27f84fc..0d615dd 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,6 @@ -MONGODB_URI = "mongodb+srv://18oo18oo12:@cluster0.qk8pt.mongodb.net/course" -JWT_TOKEN = < you can find it under inspect -> application -> cookies -> https://www.animetrix.xyz > +MONGODB_URI = +# you can find token under inspect -> application -> cookies -> https://www.animetrix.xyz +JWT_TOKEN = # gemini api key NEXT_PUBLIC_GEMINI_API_KEY = # self host anime api url from https://github.com/consumet/api.consumet.org