summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/console/app/src/routes/workspace/[id]/billing/reload-section.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/console/app/src/routes/workspace/[id]/billing/reload-section.tsx b/packages/console/app/src/routes/workspace/[id]/billing/reload-section.tsx
index 57267a95e..50d00ef30 100644
--- a/packages/console/app/src/routes/workspace/[id]/billing/reload-section.tsx
+++ b/packages/console/app/src/routes/workspace/[id]/billing/reload-section.tsx
@@ -182,8 +182,8 @@ export function ReloadSection() {
</div>
</form>
</Show>
- <div data-slot="section-content">
- <Show when={billingInfo()?.reload && billingInfo()?.reloadError}>
+ <Show when={billingInfo()?.reload && billingInfo()?.reloadError}>
+ <div data-slot="section-content">
<div data-slot="reload-error">
<p>
Reload failed at{" "}
@@ -204,8 +204,8 @@ export function ReloadSection() {
</button>
</form>
</div>
- </Show>
- </div>
+ </div>
+ </Show>
</section>
)
}