Skip to content

Commit 4bff0f1

Browse files
committed
fix minor scroll bug with telemetry required page
1 parent efd450f commit 4bff0f1

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

frontend/app/aipanel/telemetryrequired.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const TelemetryRequiredMessage = ({ className }: TelemetryRequiredMessageProps)
2828
};
2929

3030
return (
31-
<div className={cn("flex flex-col h-full", className)}>
31+
<div className={cn("flex flex-col h-full overflow-y-auto", className)}>
3232
<div className="flex-grow"></div>
3333
<div className="flex items-center justify-center p-8 text-center">
3434
<div className="max-w-md space-y-6">

frontend/types/gotypes.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1589,6 +1589,7 @@ declare global {
15891589
"debug:panictype"?: string;
15901590
"block:view"?: string;
15911591
"block:controller"?: string;
1592+
"block:subblock"?: boolean;
15921593
"ai:backendtype"?: string;
15931594
"ai:local"?: boolean;
15941595
"wsh:cmd"?: string;

0 commit comments

Comments
 (0)