Skip to content

Commit

Permalink
fix: resolve PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
whtsupbab3 committed Dec 10, 2024
1 parent d8d8660 commit 43b3a56
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions src/components/global/FormBounty.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,7 @@ export default function FormBounty({
type='text'
value={name}
onChange={(e) => setName(e.target.value)}
className={cn(
'border py-2 px-2 rounded-md mb-4 bg-transparent border-[#D1ECFF]',
generateBountyMutation.isPending
? 'cursor-not-allowed animate-pulse'
: ''
)}
className='border py-2 px-2 rounded-md mb-4 bg-transparent border-[#D1ECFF] disabled:cursor-not-allowed disabled:animate-pulse'
/>
<span
className={cn(
Expand All @@ -189,12 +184,7 @@ export default function FormBounty({
rows={3}
value={description}
onChange={(e) => setDescription(e.target.value)}
className={cn(
'border py-2 px-2 rounded-md mb-4 max-h-28 bg-transparent border-[#D1ECFF]',
generateBountyMutation.isPending
? 'cursor-not-allowed animate-pulse'
: ''
)}
className='border py-2 px-2 rounded-md mb-4 max-h-28 bg-transparent border-[#D1ECFF] disabled:cursor-not-allowed disabled:animate-pulse'
></textarea>

<span>reward</span>
Expand Down

0 comments on commit 43b3a56

Please sign in to comment.