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.

increase bottom padding on scraping buttons

+4 -2
+4 -2
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"; 5 6 import { useMountedState } from "react-use"; 6 7 import type { AsyncReturnType } from "type-fest"; 7 8 ··· 38 39 const { startScraping, sourceOrder, sources, currentSource } = useScrape(); 39 40 const isMounted = useMountedState(); 40 41 const { t } = useTranslation(); 42 + const navigate = useNavigate(); 41 43 42 44 const containerRef = useRef<HTMLDivElement | null>(null); 43 45 const listRef = useRef<HTMLDivElement | null>(null); ··· 151 153 </div> 152 154 ); 153 155 })} 154 - <div className="flex gap-3"> 156 + <div className="flex gap-3 pb-3"> 155 157 <Button 156 158 href="/" 157 159 theme="secondary" ··· 161 163 {t("notFound.goHome")} 162 164 </Button> 163 165 <Button 164 - onClick={() => window.location.reload()} 166 + onClick={() => navigate(`/${window.location.href}`)} 165 167 theme="purple" 166 168 padding="md:px-17 p-3" 167 169 className="mt-6"