We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bda8498 commit 1a55f6bCopy full SHA for 1a55f6b
1 file changed
packages/gitbook/src/components/Embeddable/EmbeddableFrame.tsx
@@ -32,7 +32,10 @@ export function EmbeddableFrameMain(props: { children: React.ReactNode; 'data-te
32
const { children, 'data-testid': dataTestId } = props;
33
34
return (
35
- <div className="flex flex-1 flex-col overflow-hidden" data-testid={dataTestId}>
+ <div
36
+ className="flex flex-1 flex-col overflow-hidden"
37
+ data-testid={dataTestId ?? 'embed-frame-main'}
38
+ >
39
{children}
40
</div>
41
);
0 commit comments