diff --git a/src/components/carousel/carousel-section.tsx b/src/components/carousel/carousel-section.tsx index 1d40e062..a4025e70 100644 --- a/src/components/carousel/carousel-section.tsx +++ b/src/components/carousel/carousel-section.tsx @@ -17,7 +17,7 @@ export const CarouselSection: FC> = ({ children, }) => ( - + {/* */} {children} ); diff --git a/src/components/carousel/variants/carousel-main.tsx b/src/components/carousel/variants/carousel-main.tsx index 8a13e60f..f87c3a15 100644 --- a/src/components/carousel/variants/carousel-main.tsx +++ b/src/components/carousel/variants/carousel-main.tsx @@ -214,7 +214,7 @@ function CarouselItem({ post }: Readonly) { }} > - Add watchlist + Add Watchlist diff --git a/src/components/carousel/variants/carousel-mixed.tsx b/src/components/carousel/variants/carousel-mixed.tsx index 92f9756e..72c1083b 100644 --- a/src/components/carousel/variants/carousel-mixed.tsx +++ b/src/components/carousel/variants/carousel-mixed.tsx @@ -108,7 +108,6 @@ export default function CarouselMixed({ data }: Props) { genre: getMovieGenres(post).split(', '), images: { vertical: getMediaUri(getPosterCid(post)), - horizontal: getMediaUri(getPosterHorizontalCid(post)), wallpaper: getMediaUri(getWallpaperCid(post)), }, likes: post?.stats?.upvotes ?? 0, @@ -139,7 +138,6 @@ export default function CarouselMixed({ data }: Props) { genre: getMovieGenres(post).split(', '), images: { vertical: getMediaUri(getPosterCid(post)), - horizontal: getMediaUri(getPosterHorizontalCid(post)), wallpaper: getMediaUri(getWallpaperCid(post)), }, likes: post?.stats?.upvotes ?? 0, diff --git a/src/components/carousel/variants/carousel-poster-horizontal.tsx b/src/components/carousel/variants/carousel-poster-horizontal.tsx index ce5ca138..b515f87b 100644 --- a/src/components/carousel/variants/carousel-poster-horizontal.tsx +++ b/src/components/carousel/variants/carousel-poster-horizontal.tsx @@ -74,7 +74,6 @@ export default function CarouselPosterHorizontal({ data }: Props) { genre={getMovieGenres(post).split(', ')} images={{ vertical: getMediaUri(getPosterCid(post)), - horizontal: getMediaUri(getPosterHorizontalCid(post)), wallpaper: getMediaUri(getWallpaperCid(post)), }} likes={post?.stats?.upvotes ?? 0} diff --git a/src/components/carousel/variants/carousel-top-titles.tsx b/src/components/carousel/variants/carousel-top-titles.tsx index 87118c5f..90e7b674 100644 --- a/src/components/carousel/variants/carousel-top-titles.tsx +++ b/src/components/carousel/variants/carousel-top-titles.tsx @@ -52,7 +52,7 @@ export default function CarouselTopTitles({ posts, category }: Props) { > {posts.map((post: any) => ( - + ))} diff --git a/src/components/poster/variants/poster-top-titles.tsx b/src/components/poster/variants/poster-top-titles.tsx index 86d44168..5c6aabec 100644 --- a/src/components/poster/variants/poster-top-titles.tsx +++ b/src/components/poster/variants/poster-top-titles.tsx @@ -79,6 +79,7 @@ const PosterTopTitles = ({ post }: { post: any }) => { width: '100%', height: '100%', opacity: 0.2, + filter: "blur(5px) !important", backgroundSize: 'cover', backgroundPosition: 'center', backgroundRepeat: 'no-repeat', diff --git a/src/hooks/use-account-session.ts b/src/hooks/use-account-session.ts index bf073540..48baf021 100644 --- a/src/hooks/use-account-session.ts +++ b/src/hooks/use-account-session.ts @@ -9,12 +9,12 @@ import { setAuthLoading, setSession, setBalance } from '@redux/auth'; import { useSession, useLogout } from '@lens-protocol/react-web'; // NOTIFICATIONS IMPORTS -import { ERRORS } from '@notifications/errors'; -import { notifyError } from '@notifications/internal-notifications'; +import { notifyWarning } from '@notifications/internal-notifications'; // WEB3AUTH IMPORTS import { useWeb3Auth } from '@src/hooks/use-web3-auth'; import { useWeb3Session } from '@src/hooks/use-web3-session'; +import {WARNING} from "@notifications/warnings.ts"; // ---------------------------------------------------------------------- @@ -51,7 +51,7 @@ export const useAccountSession = (): UseAccountSessionHook => { dispatch(setBalance({ balance: 0 })); dispatch(setSession({ session: { ...data, authenticated: false } })); dispatch(setAuthLoading({ isSessionLoading: false })); - if (!silent) notifyError(ERRORS.BUNDLER_UNAVAILABLE); + if (!silent) notifyWarning(WARNING.BUNDLER_UNAVAILABLE); }, [web3Auth.status]); // Automatic checks on mount + interval diff --git a/src/layouts/_common/header-balance.tsx b/src/layouts/_common/header-balance.tsx index dbf1a63a..9f1800af 100644 --- a/src/layouts/_common/header-balance.tsx +++ b/src/layouts/_common/header-balance.tsx @@ -45,9 +45,6 @@ export default function HeaderBalance() { {formatBalanceNumber(balance)} - - MMC - ); diff --git a/src/sections/publication/view/publication-details-view.tsx b/src/sections/publication/view/publication-details-view.tsx index b1599758..e9ff2c81 100644 --- a/src/sections/publication/view/publication-details-view.tsx +++ b/src/sections/publication/view/publication-details-view.tsx @@ -33,6 +33,7 @@ import LoadingButton from '@mui/lab/LoadingButton'; import { useDispatch, useSelector } from 'react-redux'; import { openLoginModal } from '@redux/auth'; import { appId, PublicationType, usePublications } from '@lens-protocol/react-web'; +import {trimPublicationContentExtraText} from "@src/utils/text-transform.ts"; import { useIsPolicyAuthorized } from '@src/hooks/use-is-policy-authorized.ts'; import { GLOBAL_CONSTANTS } from '@src/config-global.ts'; @@ -277,7 +278,7 @@ export default function PublicationDetailsView({ id }: Props) { opacity: 0.8, }} > - + {showButton && (