remove popup and bring back setup!

This commit is contained in:
Ivan Evans 2024-12-29 22:32:14 -07:00
parent 63a4d35195
commit 899a3040ba
2 changed files with 4 additions and 4 deletions

View file

@ -93,7 +93,7 @@ export function HomePage() {
<title>{t("global.name")}</title>
</Helmet>
{/* Popup Modal */}
{/* Popup Modal
{showModal && (
<PopupModal
title="Issue on Safari (iOS/macOS)"
@ -126,7 +126,7 @@ export function HomePage() {
onClose={() => setShowModal(false)}
/>
)}
{/* END */}
END */}
<HeroPart searchParams={searchParams} setIsSticky={setShowBg} />
</div>

View file

@ -9,7 +9,7 @@ import { MwLink } from "@/components/text/Link";
import { AuthInputBox } from "@/components/text-inputs/AuthInputBox";
import { Divider } from "@/components/utils/Divider";
import { Heading1 } from "@/components/utils/Text";
// import { SetupPart } from "@/pages/parts/settings/SetupPart";
import { SetupPart } from "@/pages/parts/settings/SetupPart";
interface ProxyEditProps {
proxyUrls: string[] | null;
@ -157,7 +157,7 @@ export function ConnectionsPart(props: BackendEditProps & ProxyEditProps) {
<div>
<Heading1 border>{t("settings.connections.title")}</Heading1>
<div className="space-y-6">
{/* <SetupPart /> Removed due to NSBX limitations */}
<SetupPart /> {/* I was wondering what heppened to this badddev >:( */}
<ProxyEdit
proxyUrls={props.proxyUrls}
setProxyUrls={props.setProxyUrls}