Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc: hunt empty classname and restore value when needed #1890

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/emails/DunningEmail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const DunningEmailSkeleton = () => {
return (
<>
<Skeleton variant="text" color="dark" className="w-26" />
<Skeleton variant="text" color="dark" className="" />
<Skeleton variant="text" color="dark" />
<Skeleton variant="text" color="dark" className="w-40" />
</>
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/form/ComboBox/ComboBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export const ComboBox = ({
{[1, 2, 3].map((i) => (
<LoadingItem key={`combobox-loading-item-${i}`}>
<Skeleton variant="circular" size="small" className="mr-4" />
<Skeleton variant="text" className="" />
<Skeleton variant="text" />
</LoadingItem>
))}
</LoadingIemsWrapper>
Expand Down
2 changes: 1 addition & 1 deletion src/components/graphs/Invoices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ const Invoices = ({
<GraphWrapper>
{!!isLoading ? (
<>
<Skeleton variant="text" className="" />
<Skeleton variant="text" />

<div>
{[...Array(3)].map((_, index) => (
Expand Down
2 changes: 1 addition & 1 deletion src/components/graphs/Usage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const Usage = ({
<GraphWrapper>
{!!isLoading ? (
<>
<Skeleton variant="text" className="" />
<Skeleton variant="text" />

<div>
{[...Array(3)].map((_, index) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const SubscriptionUsageLifetimeGraphComponent = ({
<div className="flex flex-col gap-3">
{!!isLoading ? (
<div className="flex flex-col gap-3">
<Skeleton variant="text" className="" />
<Skeleton variant="text" className="mt-2 w-36" />

<div className="flex h-6 items-center gap-2">
<Skeleton variant="text" className="w-[32%]" />
Expand Down
Loading