Skip to content

Commit

Permalink
Merge pull request #181 from lidofinance/attributes_update
Browse files Browse the repository at this point in the history
Attributes update
  • Loading branch information
itaven authored Dec 13, 2023
2 parents 9c93c20 + e467b09 commit f23f129
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions features/stake/stake-form/controls/stake-amount-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const StakeAmountInput = () => {
<TokenAmountInputHookForm
fieldName="amount"
token={'ETH'}
data-testid="stakeInput"
leftDecorator={<Eth />}
maxValue={maxAmount}
error={limitError}
Expand Down
1 change: 1 addition & 0 deletions features/stake/stake-form/controls/stake-submit-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const StakeSubmitButton = () => {
return (
<SubmitButtonHookForm
disabled={stakingLimitInfo?.stakeLimitLevel === LIMIT_LEVEL.REACHED}
data-testid="stakeSubmitBtn"
errorField="amount"
>
Stake
Expand Down
4 changes: 3 additions & 1 deletion shared/components/layout/footer/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ export const Footer: FC = () => (
>
Privacy Notice
</FooterLink>
<Version href={link}>{label}</Version>
<Version data-testid="appVersion" href={link}>
{label}
</Version>
<FooterDivider />
</FooterStyle>
);

0 comments on commit f23f129

Please sign in to comment.