Skip to content

Commit

Permalink
Just use width
Browse files Browse the repository at this point in the history
  • Loading branch information
conbrad committed Aug 20, 2024
1 parent c013a41 commit d328405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/features/fba/components/infoPanel/InfoPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface InfoPanelProps {
// A component to host information in a side panel in ASA.
const InfoPanel = React.forwardRef(({ children }: InfoPanelProps, ref: React.ForwardedRef<HTMLDivElement>) => {
return (
<Grid data-testid="info-panel" item ref={ref} sx={{ minWidth: '500px', maxWidth: '500px', overflowY: 'auto' }}>
<Grid data-testid="info-panel" item ref={ref} sx={{ width: '500px', overflowY: 'auto' }}>
{children}
</Grid>
)
Expand Down

0 comments on commit d328405

Please sign in to comment.