Skip to content

Commit 540fcf6

Browse files
committed
fix(webapp): let the connected GitHub repo rows use the full step width
The deployments blank state wrapped GitHubSettingsPanel in a shrink-to-fit container. That suited the button-only prompt, but the connected repository view now renders full-width settings rows, and the wrapper held them to 567px of the 655px the step provides. Nothing overflowed, so this is a refinement rather than a broken layout. The prompt state is unaffected: the button keeps its natural size and only the hint wraps later.
1 parent 230aafe commit 540fcf6

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

apps/webapp/app/components/BlankStatePanels.tsx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -701,14 +701,12 @@ function DeploymentOnboardingSteps() {
701701
Deploy automatically with every push. Read the{" "}
702702
<TextLink to={docsPath("github-integration")}>full guide</TextLink>.
703703
</Paragraph>
704-
<div className="w-fit">
705-
<GitHubSettingsPanel
706-
organizationSlug={organization.slug}
707-
projectSlug={project.slug}
708-
environmentSlug={environment.slug}
709-
billingPath={v3BillingPath({ slug: organization.slug })}
710-
/>
711-
</div>
704+
<GitHubSettingsPanel
705+
organizationSlug={organization.slug}
706+
projectSlug={project.slug}
707+
environmentSlug={environment.slug}
708+
billingPath={v3BillingPath({ slug: organization.slug })}
709+
/>
712710
</StepContentContainer>
713711
</ClientTabsContent>
714712
<ClientTabsContent value={"cli"}>

0 commit comments

Comments
 (0)