Merge remote-tracking branch 'origin/livekit' into dbkr/react_to_livekit_disconnect

This commit is contained in:
David Baker
2023-07-24 21:35:09 +01:00
28 changed files with 483 additions and 592 deletions

View File

@@ -18,6 +18,7 @@ import { ReactNode, useCallback, useEffect } from "react";
import { useLocation } from "react-router-dom";
import classNames from "classnames";
import { Trans, useTranslation } from "react-i18next";
import * as Sentry from "@sentry/react";
import { Header, HeaderLogo, LeftNav, RightNav } from "./Header";
import { LinkButton, Button } from "./button";
@@ -57,6 +58,7 @@ export function ErrorView({ error }: ErrorViewProps) {
useEffect(() => {
console.error(error);
Sentry.captureException(error);
}, [error]);
const onReload = useCallback(() => {