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 workers test page not using the actual proxy workers

mrjvs 0ef33ccd 81e70030

+2 -2
+2 -2
src/pages/parts/admin/WorkerTestPart.tsx
··· 8 8 import { Box } from "@/components/layout/Box"; 9 9 import { Divider } from "@/components/utils/Divider"; 10 10 import { Heading2 } from "@/components/utils/Text"; 11 - import { conf } from "@/setup/config"; 11 + import { getProxyUrls } from "@/utils/proxyUrls"; 12 12 13 13 export function WorkerItem(props: { 14 14 name: string; ··· 43 43 44 44 export function WorkerTestPart() { 45 45 const workerList = useMemo(() => { 46 - return conf().PROXY_URLS.map((v, ind) => ({ 46 + return getProxyUrls().map((v, ind) => ({ 47 47 id: ind.toString(), 48 48 url: v, 49 49 }));