Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions apps/marketing/components/okcode-mockup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {
Monitor,
MessageSquare,
Code,
Check,
Clock,
} from "lucide-react";
import { useState } from "react";
Expand Down Expand Up @@ -149,7 +148,6 @@ export function OKCodeMockup() {
<div className="flex items-center gap-1 px-2 py-1 text-[10px] text-[#666] uppercase tracking-wider mb-1">
<span>Files</span>
</div>
<NavItem icon={FileText} label="YouTube" />
<NavItem icon={GitBranch} label="PR Review" />
<NavItem icon={MessageSquare} label="Merge Conflicts" />
<NavItem icon={File} label="File View" />
Expand Down
2 changes: 1 addition & 1 deletion apps/marketing/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
import "./.next/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
3 changes: 3 additions & 0 deletions apps/marketing/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
turbopack: {
root: new URL("../..", import.meta.url).pathname,
},
typescript: {
ignoreBuildErrors: true,
},
Expand Down
3 changes: 0 additions & 3 deletions apps/web/src/components/ChatView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ import { resolveShortcutCommand, shortcutLabelForCommand } from "../keybindings"
import { buildChatShortcutGuides } from "~/lib/chatShortcutGuidance";
import PlanSidebar from "./PlanSidebar";
import ThreadTerminalDrawer from "./ThreadTerminalDrawer";
import { YouTubePlayerDrawer } from "./YouTubePlayer";
import {
AtSignIcon,
BotIcon,
Expand Down Expand Up @@ -5538,8 +5537,6 @@ export default function ChatView({ threadId }: ChatViewProps) {
);
})()}

<YouTubePlayerDrawer />

<Dialog
open={pendingProjectScriptRun !== null}
onOpenChange={(open: boolean) => {
Expand Down
4 changes: 0 additions & 4 deletions apps/web/src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {
TerminalIcon,
TriangleAlertIcon,
} from "lucide-react";
import { YouTubeToggleButton } from "./YouTubePlayer";
import { ThemeModeSwitcher } from "./ThemeModeSwitcher";
import { autoAnimate } from "@formkit/auto-animate";
import { useCallback, useEffect, useMemo, useRef, useState, type MouseEvent } from "react";
Expand Down Expand Up @@ -2065,9 +2064,6 @@ export default function Sidebar() {
<SidebarSeparator />
<SidebarFooter className="p-2">
<SidebarMenu>
<SidebarMenuItem>
<YouTubeToggleButton />
</SidebarMenuItem>
{isOnSubPage ? (
<SidebarMenuItem>
<SidebarMenuButton
Expand Down
Loading
Loading