Skip to content

Commit 29b7d91

Browse files
authored
fix lint (#1361)
1 parent e5172e2 commit 29b7d91

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

agents-docs/src/components/mdx/big-video.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import React from 'react';
2-
31
interface BigVideoProps {
42
src: string;
53
maxWidth?: string;
@@ -8,6 +6,7 @@ interface BigVideoProps {
86

97
export function BigVideo({ src, height = 'auto' }: BigVideoProps) {
108
return (
9+
// biome-ignore lint/a11y/useMediaCaption: ignore `.vtt` captions
1110
<video
1211
src={src}
1312
controls
@@ -16,7 +15,7 @@ export function BigVideo({ src, height = 'auto' }: BigVideoProps) {
1615
display: 'block',
1716
maxWidth: '800px',
1817
width: '100%',
19-
height: height,
18+
height,
2019
margin: '0 auto',
2120
}}
2221
>

0 commit comments

Comments
 (0)