pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix reload button

+1 -3
+1 -3
src/pages/parts/player/ScrapingPart.tsx
··· 2 2 import classNames from "classnames"; 3 3 import { useEffect, useRef, useState } from "react"; 4 4 import { useTranslation } from "react-i18next"; 5 - import { useNavigate } from "react-router-dom"; 6 5 import { useMountedState } from "react-use"; 7 6 import type { AsyncReturnType } from "type-fest"; 8 7 ··· 39 38 const { startScraping, sourceOrder, sources, currentSource } = useScrape(); 40 39 const isMounted = useMountedState(); 41 40 const { t } = useTranslation(); 42 - const navigate = useNavigate(); 43 41 44 42 const containerRef = useRef<HTMLDivElement | null>(null); 45 43 const listRef = useRef<HTMLDivElement | null>(null); ··· 163 161 {t("notFound.goHome")} 164 162 </Button> 165 163 <Button 166 - onClick={() => navigate(`/${window.location.href}`)} 164 + onClick={() => window.location.reload()} 167 165 theme="purple" 168 166 padding="md:px-17 p-3" 169 167 className="mt-6"