Skip to content

Commit

Permalink
Merge pull request #669 from subspace/bug/registerWithSeed
Browse files Browse the repository at this point in the history
fix small bug that creped in during merge conflict
  • Loading branch information
marc-aurele-besner authored Jun 25, 2024
2 parents 39c7cc2 + ebd62df commit 661a9bd
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit 661a9bd

Please sign in to comment.