We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baff5af commit f4ef550Copy full SHA for f4ef550
services/backend-api/client/src/components/ErrorAlert/index.tsx
@@ -9,6 +9,8 @@ interface Props {
9
export const ErrorAlert: React.FC<Props> = ({ description }) => {
10
const { t } = useTranslation();
11
12
+ const isGoogleTranslateUsed = !!document.getElementById("goog-gt-tt");
13
+
14
return (
15
<Stack
16
display="flex"
@@ -33,6 +35,12 @@ export const ErrorAlert: React.FC<Props> = ({ description }) => {
33
35
<Stack>
34
36
<Text color="gray.400">{t("common.errors.detailsTitle")}</Text>
37
<Text>{description}</Text>
38
+ {isGoogleTranslateUsed && (
39
+ <Text>
40
+ If you are using Google Translate and are facing persistent issues, you may try
41
+ disabling it as there are known issues with it.
42
+ </Text>
43
+ )}
44
</Stack>
45
</>
46
)}
0 commit comments