Skip to content
This repository was archived by the owner on Nov 28, 2023. It is now read-only.

Commit 661cc0a

Browse files
committed
fix: failing build
1 parent 7ddfe1e commit 661cc0a

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 0.3.5
6+
7+
- 🚨 Fixed failing build
8+
59
## 0.3.4
610

711
- 🦺 Fixed directory selector returning only relative path

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "seanime",
3-
"version": "0.3.4",
3+
"version": "0.3.5",
44
"author": "5rahim",
55
"scripts": {
66
"dev": "next dev --port=43200",

src/app/(main)/view/_containers/episode-section/_components/play-next-file.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { usePathname, useRouter } from "next/navigation"
33
import { useSearchParam } from "react-use"
44

55
export function PlayNextFile({ path, playFile }: {
6-
path: string | undefined
6+
path: string | null
77
playFile: (value: string) => Promise<void>
88
}) {
99

src/app/(main)/view/_containers/meta-section/_components/torrent-download-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export function TorrentDownloadButton(
4646
{(detailedMedia.format !== "MOVIE") && `Download ${downloadInfo.batch ? "batch /" : "next"} ${downloadInfo.toDownload > 1 ? `${downloadInfo.toDownload} episodes` : "episode"}`}
4747
{(detailedMedia.format === "MOVIE") && `Download movie`}
4848
</> : <>
49-
Search for torrents
49+
Search torrents
5050
</>}
5151
</Button>
5252
</div>

src/components/shared/large-episode-list-item.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { AiFillPlayCircle } from "@react-icons/all-files/ai/AiFillPlayCircle"
55
import { imageShimmer } from "@/components/shared/image-helpers"
66

77
type LargeEpisodeListItemProps = {
8-
title: React.ReactElement
8+
title: React.ReactNode
99
actionIcon?: React.ReactElement
1010
image?: string | null
1111
onClick?: () => void

0 commit comments

Comments
 (0)