Skip to content

Commit

Permalink
changed ul back to div after more thought on it, its not a list
Browse files Browse the repository at this point in the history
  • Loading branch information
Cara-Barter committed Nov 9, 2023
1 parent 34296b2 commit 166528a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Form/NextPrevious.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function NextPrevious({ numberOfSteps, onClickCallback, sitename }) {
}

return (
<ul className="flex w-full justify-between p-2">
<div className="flex w-full justify-between p-2">
{activeStepNumber > 0 ? (
<button
type="button"
Expand Down Expand Up @@ -52,7 +52,7 @@ function NextPrevious({ numberOfSteps, onClickCallback, sitename }) {
</Link>
</div>
)}
</ul>
</div>
)
}

Expand Down

0 comments on commit 166528a

Please sign in to comment.