Skip to content

Commit

Permalink
style(strapi/section-page): fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandebalthasar committed Oct 12, 2023
1 parent 8afbff0 commit d5b19e8
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions apps/trackflix/src/pages/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,14 @@ type VideoItemProps = {
}

const VideoItem = ({ vod }: VideoItemProps) => {
const [thumbnail, setThumbnail] = useState<
| {
obj: Thumbnail
url: string
}
| undefined
>(undefined)
const [thumbnail, setThumbnail] =
useState<
| {
obj: Thumbnail
url: string
}
| undefined
>(undefined)
const { width } = useWindowDimensions()
const videoCardProperties = useMemo(() => {
if (defaultVideoCardProperties.width > width - 100) {
Expand Down

0 comments on commit d5b19e8

Please sign in to comment.