Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix small bug that creped in during merge conflict #669

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions explorer/src/components/Operator/OperatorStake.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -496,15 +496,15 @@ export const OperatorStake = () => {
<>
<div className={`p-4 ${isDesktop ? 'col-span-2' : 'col-span-1'}`}>
<span className='text-base font-medium text-grayDarker dark:text-white'>
Signing key
Signing key seed
</span>
<Field
name='signingKey'
placeholder='Signing Key'
name='signingKeySeed'
placeholder='Signing Key seed'
className={`mt-4 block w-full rounded-full bg-white from-pinkAccent to-purpleDeepAccent px-4 py-[10px] text-sm text-gray-900 shadow-lg dark:bg-gradient-to-r dark:text-white
${
errors.signingKey &&
touched.signingKey &&
errors.signingKeySeed &&
touched.signingKeySeed &&
'block w-full rounded-full bg-white px-4 py-[10px] text-sm text-gray-900 shadow-lg dark:bg-blueDarkAccent'
}
`}
Expand Down
Loading