Skip to content

Commit 03a2c84

Browse files
committed
prettier
1 parent 4208ba3 commit 03a2c84

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

components/auth/LegislatorSignUpModal.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,19 +157,15 @@ export default function LegislatorSignUpModal({
157157
/>
158158

159159
<Form.Group controlId="legislatorSearch">
160-
<Form.Label>
161-
{t("selectLegislatorHeader")}
162-
</Form.Label>
160+
<Form.Label>{t("selectLegislatorHeader")}</Form.Label>
163161
<Search
164162
index={memberIndex}
165163
update={member => {
166164
setSelectedMember(member)
167165
if (member) setMemberError(undefined)
168166
}}
169167
memberId={selectedMember?.id}
170-
placeholder={
171-
t("searchLegislatorsPlaceholder")
172-
}
168+
placeholder={t("searchLegislatorsPlaceholder")}
173169
menuPortalTarget={document.body}
174170
styles={{
175171
menuPortal: (base: any) => ({ ...base, zIndex: 9999 })

components/auth/ProfileTypeModal.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ export default function ProfileTypeModal({
5757
<Col md={12} className="mx-auto">
5858
<Stack gap={4} direction="vertical">
5959
<h2>{t("registerAs")}</h2>
60-
<Stack gap={4} direction="horizontal" className="align-items-stretch">
60+
<Stack
61+
gap={4}
62+
direction="horizontal"
63+
className="align-items-stretch"
64+
>
6165
<StyledButton
6266
type="button"
6367
variant="secondary"
@@ -104,7 +108,7 @@ export default function ProfileTypeModal({
104108
</Stack>
105109
<p>{t("orgVetting")}</p>
106110
</Stack>
107-
<hr/>
111+
<hr />
108112
<Button type="button" className="w-100" onClick={onHide}>
109113
{t("cancel")}
110114
</Button>

0 commit comments

Comments
 (0)