Skip to content

Commit

Permalink
Fixed build error
Browse files Browse the repository at this point in the history
  • Loading branch information
xannyxs committed Feb 28, 2024
1 parent 90c7c4b commit b104fb5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions packages/app/components/misc/interact/EmbedButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import {
CredenzaHeader,
CredenzaTitle,
CredenzaTrigger,
} from '../ui/crezenda'
import { Input } from '../ui/input'
} from '@/components/ui/crezenda'
import { Input } from '@/components/ui/input'

const ModalContent: React.FC<{
playbackId?: string
Expand Down
2 changes: 1 addition & 1 deletion packages/app/components/plugins/SignUp/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { Input } from '@/components/ui/input'
import { Button } from '@/components/ui/button'
import { toast } from 'sonner'
import { ReloadIcon } from '@radix-ui/react-icons'
import InfoHoverCard from '@/components/misc/InfoHoverCard'
import InfoHoverCard from '@/components/misc/interact/InfoHoverCard'

const initialState = {
message: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import {
DropdownMenuItem,
} from '@/components/ui/dropdown-menu'
import VideoDownload from '@/app/(vod)/watch/components/VideoDownload'
import ShareButton from '@/components/misc/ShareButton'
import EmbedButton from '@/components/misc/EmbedButton'
import ShareButton from '@/components/misc/interact/ShareButton'
import EmbedButton from '@/components/misc/interact/EmbedButton'
import { MoreHorizontal } from 'lucide-react'
export function DropdownMenuWithActionButtons({
streamId,
Expand All @@ -26,9 +26,9 @@ export function DropdownMenuWithActionButtons({
return (
<DropdownMenu>
<DropdownMenuTrigger asChild>
<MoreHorizontal className="flex md:hidden border rounded-full w-10 h-10 p-2" />
<MoreHorizontal className="flex p-2 w-10 h-10 rounded-full border md:hidden" />
</DropdownMenuTrigger>
<DropdownMenuContent className="bg-white border-none ">
<DropdownMenuContent className="bg-white border-none">
<DropdownMenuGroup>
<DropdownMenuItem asChild>
<div className="w-full">
Expand Down
12 changes: 6 additions & 6 deletions packages/app/components/sessions/SessionInfoBox.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ShareButton from '@/components/misc/ShareButton'
import EmbedButton from '@/components/misc/EmbedButton'
import ShareButton from '@/components/misc/interact/ShareButton'
import EmbedButton from '@/components/misc/interact/EmbedButton'
import VideoDownload from '@/app/(vod)/watch/components/VideoDownload'
import ViewCounts from '@/app/(vod)/watch/components/ViewCounts'
import { Avatar, AvatarFallback, AvatarImage } from '../ui/avatar'
Expand Down Expand Up @@ -45,9 +45,9 @@ const SessionInfoBox = ({
className={`${
inverted ? 'text-white rounded-lg text-card-foreground ' : ''
}`}>
<CardHeader className=" p-2 lg:p-2 flex w-full lg:items-center justify-between flex-col lg:flex-row">
<div className="md:flex flex-col">
<CardTitle className="flex flex-row space-x-2 items-center">
<CardHeader className="flex flex-col justify-between p-2 w-full lg:flex-row lg:items-center lg:p-2">
<div className="flex-col md:flex">
<CardTitle className="flex flex-row items-center space-x-2">
{avatarUrl && (
<Avatar>
<AvatarImage src={avatarUrl} alt={avatarFallback} />
Expand All @@ -66,7 +66,7 @@ const SessionInfoBox = ({
</div>
</CardDescription>
</div>
<div className="flex flex-row space-x-1 my-0 ml-auto">
<div className="flex flex-row my-0 ml-auto space-x-1">
<ShareButton />
<EmbedButton
streamId={streamId}
Expand Down

0 comments on commit b104fb5

Please sign in to comment.