Skip to content

Commit

Permalink
Revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
git-init-priyanshu committed Mar 20, 2024
1 parent 0735964 commit c5862e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/LeftDrawerOrg/LeftDrawerOrg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ const leftDrawerOrg = ({
<div className={styles.profileText}>
<span className={styles.primaryText}>{organization.name}</span>
<span className={styles.secondaryText}>
{/* {organization.address.city}, {organization.address.state} */}
{organization.address.city}, {organization.address.state}
<br />
{/* {organization.address.postalCode},{' '} */}
{/* {organization.address.countryCode} */}
{organization.address.postalCode},{' '}
{organization.address.countryCode}
</span>
</div>
</button>
Expand Down
2 changes: 1 addition & 1 deletion src/components/OrgUpdate/OrgUpdate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function orgUpdate(props: InterfaceOrgUpdateProps): JSX.Element {
description: formState.orgDescrip,
address: {
city: formState.address.city,
// countryCode: formState.address.countryCode,
countryCode: formState.address.countryCode,
dependentLocality: formState.address.dependentLocality,
line1: formState.address.line1,
line2: formState.address.line2,
Expand Down

0 comments on commit c5862e4

Please sign in to comment.