Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
barvian committed Nov 28, 2024
1 parent 5f371e5 commit a90373f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion site/src/components/Nav.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Link from '@/components/Link'
import { BookOpen, Shapes, GalleryVerticalEnd } from 'lucide-react'
import { motion, MotionConfig, useMotionTemplate, useMotionValue, useScroll } from 'motion/react'
import { motion, MotionConfig, useMotionTemplate, useMotionValue } from 'motion/react'
import * as React from 'react'
import clsx from 'clsx/lite'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { EnrichedQuotedTweet } from '../../utils'
import QuotedTweetContainer from './QuotedTweetContainer.astro'
import QuotedTweetHeader from './QuotedTweetHeader.astro'
import QuotedTweetBody from './QuotedTweetBody.astro'
import TweetMedia from '../TweetMedia.astro'
// import TweetMedia from '../TweetMedia.astro'
interface Props {
tweet: EnrichedQuotedTweet
Expand All @@ -14,5 +14,5 @@ const { tweet } = Astro.props
<QuotedTweetContainer tweet={tweet}>
<QuotedTweetHeader tweet={tweet} />
<QuotedTweetBody tweet={tweet} />
{tweet.mediaDetails?.length ? <TweetMedia quoted tweet={tweet} /> : null}
<!-- {tweet.mediaDetails?.length ? <TweetMedia quoted tweet={tweet} /> : null} -->
</QuotedTweetContainer>

0 comments on commit a90373f

Please sign in to comment.