diff --git a/web/src/components/health/healthcheck.tsx b/web/src/components/health/healthcheck.tsx index ec38f5c01..7bcb5648e 100644 --- a/web/src/components/health/healthcheck.tsx +++ b/web/src/components/health/healthcheck.tsx @@ -1,24 +1,51 @@ "use client"; -import { errorHandlingFetcher } from "@/lib/fetcher"; +import { errorHandlingFetcher, FetchError, RedirectError } from "@/lib/fetcher"; import useSWR from "swr"; +import { useRouter } from "next/navigation"; +import { Modal } from "../Modal"; export const HealthCheckBanner = () => { + const router = useRouter(); const { error } = useSWR("/api/health", errorHandlingFetcher); + if (!error) { return null; } - return ( -
The backend is currently unavailable.
+ if (error instanceof RedirectError) { + return ( ++ You can click "Log in" to log back in! Apologies for the + inconvenience. +
+ + Log in + +The backend is currently unavailable.
-- If this is your initial setup or you just updated your Danswer - deployment, this is likely because the backend is still starting up. - Give it a minute or two, and then refresh the page. If that does not - work, make sure the backend is setup and/or contact an administrator. -
-+ If this is your initial setup or you just updated your Danswer + deployment, this is likely because the backend is still starting up. + Give it a minute or two, and then refresh the page. If that does not + work, make sure the backend is setup and/or contact an administrator. +
+