Skip to content

Commit

Permalink
fix: display a better error message when fetching programs fails
Browse files Browse the repository at this point in the history
Signed-off-by: Drew Hess <src@drewhess.com>
  • Loading branch information
dhess committed Aug 16, 2023
1 parent c22c245 commit 2b0b855
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/components/ChooseSession/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { useState } from "react";
import { useCookies } from "react-cookie";
import { ExclamationCircleIcon } from "@heroicons/react/24/outline";
import {
exampleAccount,
SessionList,
Expand Down Expand Up @@ -124,7 +125,18 @@ const ChooseSession = (): JSX.Element => {
onClickDelete={(sessionId) => deleteSession.mutate({ sessionId })}
/>
) : isError ? (
<div>Error: {error.message}</div>
<div className="flex min-h-full flex-col items-center justify-center">
<ExclamationCircleIcon
className="mx-auto h-8 w-8 text-red-secondary"
aria-hidden="true"
/>
<p className="mt-4 text-lg font-semibold leading-6 text-red-primary">
There was an error while fetching your programs:
</p>
<p className="mt-2 block text-sm leading-6 text-red-primary">
{error.message}
</p>
</div>
) : (
<div className="flex min-h-full flex-col items-center justify-center">
<Spinner aria-label="Loading…" />
Expand Down

0 comments on commit 2b0b855

Please sign in to comment.