Skip to content

Commit

Permalink
fix gov settings (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
brossetti1 authored Sep 3, 2022
1 parent f8bfd74 commit 91ce673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/core-app/src/components/GovernanceSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const GovernanceSettings = ({ dao }: GovernanceSettingsProps) => {
<DataIndicator
size="sm"
label="New Offering"
data={`${dao.proposalOffering} ${networkData?.symbol}`}
data={`${fromWei(dao.proposalOffering)} ${networkData?.symbol}`}
info={INFO_COPY.NEW_OFFERING}
/>
</DataGrid>
Expand All @@ -125,7 +125,7 @@ export const GovernanceSettings = ({ dao }: GovernanceSettingsProps) => {
<DataIndicator
size="sm"
label="Sponsor Threshold"
data={`${dao.sponsorThreshold} Shares`}
data={`${fromWei(dao.sponsorThreshold)} Shares`}
info={INFO_COPY.SPONSOR_THRESHOLD}
/>
</DataGrid>
Expand Down

0 comments on commit 91ce673

Please sign in to comment.