Skip to content

Commit

Permalink
Reformatted code with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahW91 authored and kpsherva committed Nov 9, 2023
1 parent 1a79711 commit c8c9d67
Showing 1 changed file with 17 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { CustomFieldSerializer } from "./CustomFieldSerializer";
import PropTypes from "prop-types";
import { default as DangerZone } from "./DangerZone";
import { default as LogoUploader } from "./LogoUploader";
import Overridable from 'react-overridable';
import Overridable from "react-overridable";

const COMMUNITY_VALIDATION_SCHEMA = Yup.object({
metadata: Yup.object({
Expand Down Expand Up @@ -379,7 +379,10 @@ class CommunityProfileForm extends Component {
}
/>

<Overridable id="CommunityProfileForm.Description" community={community}>
<Overridable
id="CommunityProfileForm.Description"
community={community}
>
<TextAreaField
fieldPath="metadata.description"
label={
Expand Down Expand Up @@ -414,7 +417,10 @@ class CommunityProfileForm extends Component {
/>
</Overridable>

<Overridable id="CommunityProfileForm.Website" community={community}>
<Overridable
id="CommunityProfileForm.Website"
community={community}
>
<TextField
fieldPath="metadata.website"
label={
Expand All @@ -428,7 +434,10 @@ class CommunityProfileForm extends Component {
/>
</Overridable>

<Overridable id="CommunityProfileForm.Organizations" community={community}>
<Overridable
id="CommunityProfileForm.Organizations"
community={community}
>
<RemoteSelectField
fieldPath="metadata.organizations"
suggestionAPIUrl="/api/affiliations"
Expand Down Expand Up @@ -597,7 +606,10 @@ class CommunityProfileForm extends Component {
computer={4}
floated="right"
>
<Overridable id="CommunityProfileForm.ProfilePicture" community={community}>
<Overridable
id="CommunityProfileForm.ProfilePicture"
community={community}
>
<LogoUploader
community={community}
hasLogo={hasLogo}
Expand Down

0 comments on commit c8c9d67

Please sign in to comment.