We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dfc89d commit f38adf1Copy full SHA for f38adf1
src/RichError.tsx
@@ -9,7 +9,6 @@ import { Trans, useTranslation } from "react-i18next";
9
import {
10
ErrorIcon,
11
HostIcon,
12
- OfflineIcon,
13
PopOutIcon,
14
} from "@vector-im/compound-design-tokens/assets/web/icons";
15
@@ -85,10 +84,6 @@ const GenericECError: FC<{ error: ElementCallError }> = ({
85
84
title = t("error.call_is_not_supported");
86
icon = HostIcon;
87
break;
88
- case ErrorCategory.NETWORK_CONNECTIVITY:
89
- title = t("error.connection_lost");
90
- icon = OfflineIcon;
91
- break;
92
default:
93
title = t("error.generic");
94
icon = ErrorIcon;
0 commit comments