Skip to content

Commit

Permalink
Increase popup maxWidth
Browse files Browse the repository at this point in the history
  • Loading branch information
bnord01 committed Jul 1, 2024
1 parent 5a6306b commit 300f59f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/MoistureMarkers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ function MoistureMarker({ record }: { record: SensorInfo }) {
},
}}
>
<Popup className="request-popup">{open ? <SensorTooltip record={record} /> : null}</Popup>
<Popup className="request-popup" maxWidth={600}>
{open ? <SensorTooltip record={record} /> : null}
</Popup>
</Marker>
);
}
Expand Down

0 comments on commit 300f59f

Please sign in to comment.