* fix: Do not self import @calcom/ui * Make translations optional * Fix mocking implementation of Button (never worked) * Ensure other libraries can resolve AppListCard
8 lines
349 B
TypeScript
8 lines
349 B
TypeScript
import { AppListCard } from "@calcom/ui/components/app-list-card/AppListCard";
|
|
import type { AppListCardProps } from "@calcom/ui/components/app-list-card/AppListCard";
|
|
|
|
export default function AppListCardPlatformWrapper(props: AppListCardProps) {
|
|
const logo = `https://app.cal.com${props.logo}`;
|
|
return <AppListCard {...props} logo={logo} />;
|
|
}
|