Removed fullscreen text.
All checks were successful
homepanel/HomePanel/pipeline/head This commit looks good

This commit is contained in:
Tom Butcher 2026-02-09 03:05:17 +00:00
parent d5464ec374
commit 50ef2b9a85

View File

@ -29,19 +29,19 @@ const DashboardEditTools = ({
<Button
type="default"
onClick={onFullscreen}
style={{ width: 32 }}
icon={
isFullscreen ? (
<HiOutlineArrowsPointingIn
style={{ fontSize: "16px", marginRight: 2 }}
style={{ fontSize: "16px" }}
/>
) : (
<HiOutlineArrowsPointingOut
style={{ fontSize: "16px", marginRight: 2 }}
style={{ fontSize: "16px" }}
/>
)
}
>
{isFullscreen ? "Exit Fullscreen" : "Fullscreen"}
</Button>
<Button
type="default"