diff --git a/package.json b/package.json index 08e0b2ed..83d17e1f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "podverse-web", - "version": "4.15.7", + "version": "4.15.8", "description": "Web app for the Podverse podcast clip sharing ecosystem", "repository": { "type": "git", diff --git a/src/components/WebLNV4VForm/WebLNV4VForm.tsx b/src/components/WebLNV4VForm/WebLNV4VForm.tsx index c5cad294..ed45a213 100644 --- a/src/components/WebLNV4VForm/WebLNV4VForm.tsx +++ b/src/components/WebLNV4VForm/WebLNV4VForm.tsx @@ -2,7 +2,7 @@ import { faSpinner } from '@fortawesome/free-solid-svg-icons' import { useTranslation } from 'next-i18next' import dynamic from 'next/dynamic' import OmniAural from 'omniaural' -import type { Episode, Podcast, ValueTag } from 'podverse-shared' +import type { Episode, Podcast, ValueTagOriginal } from 'podverse-shared' import { useEffect, useState } from 'react' import { useCookies } from 'react-cookie' import { useToasts } from 'react-toast-notifications' @@ -23,7 +23,7 @@ type Props = { episode?: Episode podcast: Podcast serverCookies: any - valueTag: ValueTag + valueTag: ValueTagOriginal } const WebLNV4VFormNoSSR = ({ episode, podcast, serverCookies, valueTag }: Props) => {