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

Commit

Permalink
fix: failing build
Browse files Browse the repository at this point in the history
  • Loading branch information
5rahim committed Oct 7, 2023
1 parent 7ddfe1e commit 661cc0a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## 0.3.5

- 🚨 Fixed failing build

## 0.3.4

- 🦺 Fixed directory selector returning only relative path
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seanime",
"version": "0.3.4",
"version": "0.3.5",
"author": "5rahim",
"scripts": {
"dev": "next dev --port=43200",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { usePathname, useRouter } from "next/navigation"
import { useSearchParam } from "react-use"

export function PlayNextFile({ path, playFile }: {
path: string | undefined
path: string | null
playFile: (value: string) => Promise<void>
}) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function TorrentDownloadButton(
{(detailedMedia.format !== "MOVIE") && `Download ${downloadInfo.batch ? "batch /" : "next"} ${downloadInfo.toDownload > 1 ? `${downloadInfo.toDownload} episodes` : "episode"}`}
{(detailedMedia.format === "MOVIE") && `Download movie`}
</> : <>
Search for torrents
Search torrents
</>}
</Button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/shared/large-episode-list-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { AiFillPlayCircle } from "@react-icons/all-files/ai/AiFillPlayCircle"
import { imageShimmer } from "@/components/shared/image-helpers"

type LargeEpisodeListItemProps = {
title: React.ReactElement
title: React.ReactNode
actionIcon?: React.ReactElement
image?: string | null
onClick?: () => void
Expand Down

0 comments on commit 661cc0a

Please sign in to comment.