Files
calendar/packages/features/ee/workflows/components/SkeletonLoaderEdit.tsx
T
1d25265c56 feat: workflows v3 UI (#22772)
* early UI refresher of workflows using v3 designs. needs tons of testing, might have broken

* Delete .claude/settings.local.json

* fix: bunch of design fixes, merge conflict fixes

* fix: e2e and type-check

* fix: await button click

* review fixes

* code rabbit fixes

* fix styles in variables dropdown

* fix text truncate

* fix: unit tests

* fix: unit tests

* chore: add missing i18n

* review fixes

* review fixes

* fix testing info message

* move timeSectionText up

* fix which team does this apply to info message

* disable set up agent button with read only

* fix: cal.ai breaking on mobile screen

---------

Co-authored-by: Amit Sharma <74371312+Amit91848@users.noreply.github.com>
Co-authored-by: Udit Takkar <udit222001@gmail.com>
Co-authored-by: CarinaWolli <wollencarina@gmail.com>
2025-09-11 17:01:42 +05:30

13 lines
350 B
TypeScript

import { SkeletonText, SkeletonContainer } from "@calcom/ui/components/skeleton";
function SkeletonLoader() {
return (
<SkeletonContainer>
<SkeletonText className="mx-auto my-8 h-48 w-full max-w-4xl" />
<SkeletonText className="mx-auto my-8 h-80 w-full max-w-4xl" />
</SkeletonContainer>
);
}
export default SkeletonLoader;