Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wildmolasses committed Nov 14, 2023
1 parent cd9447e commit a7ff8f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/[id]/delegate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const Delegate: NextPage = () => {
<button
className="flex flex-row mt-5 items-center rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 disabled:bg-gray-300 disabled:cursor-not-allowed"
type="submit"
disabled={isLoading}
disabled={Boolean(errors?.delegateAddress) || isLoading}
>
Delegate
{isLoading && (
Expand Down

0 comments on commit a7ff8f0

Please sign in to comment.