Skip to content

Commit

Permalink
fix: removed ul as it caused bad padding
Browse files Browse the repository at this point in the history
  • Loading branch information
pksorensen committed Oct 24, 2024
1 parent 94b32d1 commit 90f36f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/components/submit/Submit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ export const Submit: React.FC<SubmitProps> = ({ model, className }) => {
{/*}*/}

<div style={{ marginTop: '10px' }}>
<ul>

{submitFields.map((sf, idx) => {
return (
<Question key={sf.logicalName + idx} model={sf} />
)
})}
</ul>
</div>

<Button
Expand Down

0 comments on commit 90f36f8

Please sign in to comment.