Fix final screenshot overflow (#347)

This commit is contained in:
Salih Altun
2024-05-20 18:47:59 +03:00
committed by GitHub
parent dc10ea3c32
commit 83d8b76931

View File

@@ -117,7 +117,7 @@ function TaskDetails() {
</TabsContent>
<TabsContent value="final-screenshot">
{task ? (
<div className="h-[450px] w-[800px]">
<div className="h-[450px] w-[800px] overflow-hidden">
{task.screenshot_url ? (
<ZoomableImage
src={getScreenshotURL(task)}