aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/components/ErrorLoading.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-09-25 14:49:47 -0300
committerSebastian <sebasjm@gmail.com>2023-09-25 14:50:46 -0300
commitea0738ccd585445d7e2080d9009025dde9cf22c5 (patch)
tree1e89ceadefb2b66d8c762358c794f070c2f10dcd /packages/demobank-ui/src/components/ErrorLoading.tsx
parent820f953b96b2b2852c32dc16a2fa920c6c717788 (diff)
better /config error
Diffstat (limited to 'packages/demobank-ui/src/components/ErrorLoading.tsx')
-rw-r--r--packages/demobank-ui/src/components/ErrorLoading.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/demobank-ui/src/components/ErrorLoading.tsx b/packages/demobank-ui/src/components/ErrorLoading.tsx
index a4faa4d5d..f83b61234 100644
--- a/packages/demobank-ui/src/components/ErrorLoading.tsx
+++ b/packages/demobank-ui/src/components/ErrorLoading.tsx
@@ -32,6 +32,9 @@ export function ErrorLoading({ error }: { error: HttpError<SandboxBackend.Sandbo
<p class="text-sm font-medium text-red-800">{error.message}</p>
</div>
</div>
+ <div class="ml-3 flex-1 md:flex md:justify-between">
+ <p class="text-sm font-medium text-red-800">Got status "{error.info.status}" on {error.info.url}</p>
+ </div>
</div>
</div>
);