Skip to content

Commit

Permalink
Format tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
pjsier committed Jan 3, 2024
1 parent 84af3e7 commit bb99f07
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/pages/steps/agreement.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const Agreement = () => {
<Col xs={{ span: 24, offset: 0 }} md={{ span: 16, offset: 0 }}>
<h1>Agreement</h1>
<p>
Law and Organizing (ILO), which is a Detroit based non-profit, will
create an appeal letter FREE of charge.
The Institute for Law and Organizing (ILO), which is a Detroit-based
non-profit, will create an appeal letter FREE of charge.
</p>
<Form
form={form}
Expand Down
12 changes: 9 additions & 3 deletions src/pages/steps/homeowner-info.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,15 @@ const HomeownerInfo = () => {

{heardAbout === "social media" && (
<>
<Form.Item name="socialmedia" label="Social media platform">
<Form.Item
name="socialmedia"
label="Social media platform"
rules={[
{
required: true,
},
]}
>
<Select name="socialmedia">
<Option value="facebook">Facebook</Option>
<Option value="instagram">Instagram</Option>
Expand All @@ -437,7 +445,6 @@ const HomeownerInfo = () => {
<Form.Item
name="socialmediainput"
label="Whose social media did you learn about us from?"
rules={[{ required: true }]}
>
<Input name="socialmediainput" placeholder="Organization" />
</Form.Item>
Expand All @@ -448,7 +455,6 @@ const HomeownerInfo = () => {
<Form.Item
name="localinput"
label="What organization told you about us?"
rules={[{ required: true }]}
>
<Input name="localinput" placeholder="Organization" />
</Form.Item>
Expand Down

0 comments on commit bb99f07

Please sign in to comment.