Skip to content

Commit

Permalink
fix: grid fix for listing intro (#3701)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludtkemorgan authored Nov 3, 2023
1 parent 1161ad7 commit f283ebb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const ListingIntro = (props: ListingIntroProps) => {
heading={t("listings.sections.introTitle")}
subheading={t("listings.sections.introSubtitle")}
>
<Grid.Row className={`${defaultJurisdiction ? "hidden" : ""}`}>
<Grid.Row columns={1}>
<Grid.Cell>
<Field
id="name"
Expand All @@ -57,7 +57,7 @@ const ListingIntro = (props: ListingIntroProps) => {
fieldHasError(errors?.jurisdiction) || fieldHasError(errors?.["jurisdiction.id"])
? "field-value-error"
: ""
}`}
} ${defaultJurisdiction ? "hidden" : ""}`}
>
<Select
id={"jurisdiction.id"}
Expand Down

0 comments on commit f283ebb

Please sign in to comment.