Skip to content

Commit 2e9d5f7

Browse files
fix: loading spinner appears in top-left corner during Round Robin setup (calcom#23823)
* fix * fix * fix * fix * fix * fixed * fix * Update globals.css --------- Co-authored-by: Devanshu Sharma <devanshusharma658@gmail.com>
1 parent 8c943e8 commit 2e9d5f7

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

packages/features/eventtypes/components/EventTypeLayout.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,11 @@ function EventTypeSingleLayout({
276276
</Button>
277277
</div>
278278
}>
279-
<Suspense fallback={<Icon name="loader" />}>
279+
<Suspense fallback={
280+
<div className="flex h-64 items-center justify-center">
281+
<Icon name="loader" className="h-5 w-5 animate-spin" />
282+
</div>
283+
}>
280284
<div className="flex flex-col xl:flex-row xl:space-x-6">
281285
<div className="hidden xl:block">
282286
<VerticalTabs

0 commit comments

Comments
 (0)