'use client'; import { VscodeFileIcon } from '@/app/components/vscodeFileIcon'; import { ScrollArea } from '@/components/ui/scroll-area'; import { cn } from '@/lib/utils'; import { ChevronDown, ChevronRight, Loader2 } from 'lucide-react'; import Link from 'next/link'; import React from 'react'; import { getBrowsePath } from "@/app/[domain]/browse/hooks/utils"; import { SINGLE_TENANT_ORG_DOMAIN } from "@/lib/constants"; export const FileListItem = ({ path, repoName, }: { path: string, repoName: string, }) => { return (