import { useIsSkyvernUser } from "@/hooks/useIsSkyvernUser"; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from "@/components/ui/tooltip"; import { cn } from "@/util/utils"; function OrgWalled({ children, className, }: { children: React.ReactNode; className?: string; }) { const isSkyvernUser = useIsSkyvernUser(); if (!isSkyvernUser) { return null; } // Wrap children with visual indication for org-walled features return (
{children}

This feature is only available to Skyvern organization members

); } export { OrgWalled };