Skip to content

Commit

Permalink
fix: MET-2023 Identify new SC
Browse files Browse the repository at this point in the history
  • Loading branch information
sotatek-huytran committed Jun 5, 2024
1 parent 703cc19 commit a236514
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Contracts/Proposingviews/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const Proposingviews: React.FC<ProposingViewProps> = ({ data, isMobile }) => {
<ProposingBlueBox ref={leftBoxRef}>
<WhiteSpace>
<DataTitle> {`${t("contract.governance")}:`}</DataTitle>
<DataValue style={{ whiteSpace: "nowrap" }}>{t("contract.treasury")}</DataValue>
<DataValue>{t("contract.treasury")}</DataValue>
</WhiteSpace>
<LongButton onClick={() => setOpenRedeemer(!openRedeemer)}>
{t("contract.redeemer")}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Contracts/Votingviews/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const Votingviews: React.FC<VotingViewProps> = ({ data, isMobile }) => {
<VotingBlueBox ref={leftBoxRef}>
<WhiteSpace>
<DataTitle> {`${t("contract.governance")}:`}</DataTitle>
<DataValue style={{ whiteSpace: "nowrap" }}>{t("contract.treasury")}</DataValue>
<DataValue>{t("contract.treasury")}</DataValue>
</WhiteSpace>
<LongButton onClick={() => setOpenRedeemer(!openRedeemer)}>
{t("contract.redeemer")}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Contracts/common/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const DataValue = styled(Typography)`
color: ${({ theme }) => (theme.isDark ? theme.palette.secondary.main : theme.palette.secondary.light)};
font-feature-settings: "clig" off, "liga" off;
line-height: normal;
line-break: anywhere;
line-break: auto;
max-height: 40vh;
overflow: auto;
padding-right: 10px;
Expand Down

0 comments on commit a236514

Please sign in to comment.