mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-06-06 18:31:00 +00:00
Fix update
This commit is contained in:
parent
034680a0a1
commit
dcea448f3d
@ -21,7 +21,7 @@ const Details = () => {
|
|||||||
const [authorView, setAuthorView] = useState(false);
|
const [authorView, setAuthorView] = useState(false);
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
const [lessons, setLessons] = useState([]);
|
const [lessons, setLessons] = useState([]);
|
||||||
const { data: session } = useSession();
|
const { data: session, update } = useSession();
|
||||||
const { ndk } = useNDKContext();
|
const { ndk } = useNDKContext();
|
||||||
const { decryptContent } = useDecryptContent();
|
const { decryptContent } = useDecryptContent();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
@ -3,7 +3,6 @@ import React from 'react';
|
|||||||
import CoursesCarousel from '@/components/content/carousels/CoursesCarousel';
|
import CoursesCarousel from '@/components/content/carousels/CoursesCarousel';
|
||||||
import VideosCarousel from '@/components/content/carousels/VideosCarousel';
|
import VideosCarousel from '@/components/content/carousels/VideosCarousel';
|
||||||
import DocumentsCarousel from '@/components/content/carousels/DocumentsCarousel';
|
import DocumentsCarousel from '@/components/content/carousels/DocumentsCarousel';
|
||||||
import InteractivePromotionalCarousel from '@/components/content/carousels/InteractivePromotionalCarousel';
|
|
||||||
import HeroBanner from '@/components/banner/HeroBanner';
|
import HeroBanner from '@/components/banner/HeroBanner';
|
||||||
|
|
||||||
// todo: make paid course video and document lessons not appear in carousels
|
// todo: make paid course video and document lessons not appear in carousels
|
||||||
@ -17,7 +16,6 @@ export default function Home() {
|
|||||||
<link rel="icon" href="/favicon.ico" />
|
<link rel="icon" href="/favicon.ico" />
|
||||||
</Head>
|
</Head>
|
||||||
<main>
|
<main>
|
||||||
{/* <InteractivePromotionalCarousel /> */}
|
|
||||||
<HeroBanner />
|
<HeroBanner />
|
||||||
<CoursesCarousel />
|
<CoursesCarousel />
|
||||||
<VideosCarousel />
|
<VideosCarousel />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user