Skip to content

Commit

Permalink
Merge pull request #15 from zephex-alt/master
Browse files Browse the repository at this point in the history
I am so dumb.
  • Loading branch information
real-zephex authored May 4, 2024
2 parents 87280be + b299ee4 commit 338c574
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions src/app/anime/[id]/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import Image from "next/image";
import Button from "./buttons";
import { preFetchAnimeLinks } from "../videoLinkfetcher";

export const runtime = "edge";

export default async function AnimeInfo({ params }) {
let animeID = params.id;

Expand Down
2 changes: 0 additions & 2 deletions src/app/kdrama/[id]/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import Image from "next/image";
import EpisodesButtons from "./buttons";
import { PreFetchVideoLinks } from "../components/cacher";

export const runtime = "edge";

export default async function DramaInfo({ params }) {
const id = decodeURIComponent(params.id);
const info = await getDramaInfo(id);
Expand Down
2 changes: 0 additions & 2 deletions src/app/manga/[title]/[id]/[read]/page.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import styles from "./read.module.css";
import Image from "next/image";

export const runtime = "edge";

export default async function Read({ params }) {
const chapterId = params.read;
const results = await getPages(chapterId);
Expand Down
2 changes: 0 additions & 2 deletions src/app/manga/[title]/[id]/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { redirect } from "next/navigation";
import { FaStar } from "react-icons/fa";
import { PreFetchChaterLinks } from "../../cacher";

export const runtime = "edge";

export default async function MangaInfo({ params }) {
const id = params.id;
const data = await getMangaInfo(id);
Expand Down
2 changes: 0 additions & 2 deletions src/app/manga/[title]/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import Image from "next/image";
import Link from "next/link";
import { PreFetchMangaInfo } from "../cacher";

export const runtime = "edge";

export default async function MangaInfo({ params }) {
const title = params.title;
const data = await GetSearchedAnime(title);
Expand Down

0 comments on commit 338c574

Please sign in to comment.