import { withBuilderUtmTrackingParams } from "@agent-native/core/shared/builder-link-tracking"; import type { ConnectedAppSummary } from "../lib/other-apps"; import { AppIcon } from "./app-icon"; import { AppListRow } from "./app-list-row"; import { AppOpenActions } from "./app-open-actions"; export function ConnectedAppCard({ app, className, }: { app: ConnectedAppSummary; className?: string; }) { const launchUrl = app.homeUrl ?? app.url; return (
{app.name}
{app.description || app.url}
); }