We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 434efee commit 2a5621bCopy full SHA for 2a5621b
1 file changed
src/components/modules/post/fab/PostTagsFAB.tsx
@@ -83,7 +83,12 @@ export const TagDetailModal = (props: { name: string }) => {
83
meta: {},
84
})
85
const { dismissAll } = useModalStack()
86
- if (isLoading) return <div className="h-30 loading-dots flex w-full center" />
+ if (isLoading)
87
+ return (
88
+ <div className="center flex h-24 w-full">
89
+ <div className="loading loading-dots loading-md" />
90
+ </div>
91
+ )
92
93
if (!data) return <EmptyIcon />
94
0 commit comments