Skip to content

Commit

Permalink
refactor: update from <div> to mui <Box>
Browse files Browse the repository at this point in the history
- As per: #2716 (comment)
- More consistent within the codebase to use Box rather than div
  • Loading branch information
Mike-Heneghan committed Feb 2, 2024
1 parent d3e8adf commit ffdce5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor.planx.uk/src/components/Feedback/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,9 @@ const Feedback: React.FC = () => {
}

return (
<div ref={feedbackComponentRef}>
<Box ref={feedbackComponentRef}>
<Feedback />
</div>
</Box>
);
};

Expand Down

0 comments on commit ffdce5d

Please sign in to comment.