Move Install CLI section below WiFi settings

This commit is contained in:
Chris Wanstrath 2026-02-19 19:41:13 -08:00
parent f26b382fa6
commit 36c7913b6c

View File

@ -53,12 +53,6 @@ export function SettingsPage({ render }: { render: () => void }) {
</HeaderActions>
</MainHeader>
<MainContent centered>
<Section>
<SectionTitle>Install CLI</SectionTitle>
<DashboardInstallCmd>
curl -fsSL {location.origin}/install | bash
</DashboardInstallCmd>
</Section>
<Section>
<SectionTitle>WiFi</SectionTitle>
<form onSubmit={handleSave} style={{ display: 'flex', flexDirection: 'column', gap: 16, maxWidth: 400 }}>
@ -88,6 +82,12 @@ export function SettingsPage({ render }: { render: () => void }) {
</FormActions>
</form>
</Section>
<Section>
<SectionTitle>Install CLI</SectionTitle>
<DashboardInstallCmd>
curl -fsSL {location.origin}/install | bash
</DashboardInstallCmd>
</Section>
</MainContent>
</Main>
)