/* eslint-disable jsx-a11y/no-static-element-interactions */ /* eslint-disable jsx-a11y/click-events-have-key-events */ import './LogsError.styles.scss'; import { Typography } from 'antd'; import history from 'lib/history'; import { ArrowRight } from 'lucide-react'; import { isCloudUser } from 'utils/app'; export default function LogsError(): JSX.Element { const handleContactSupport = (): void => { if (isCloudUser()) { history.push('/support'); } else { window.open('https://signoz.io/slack', '_blank'); } }; return (