import type { FC } from '../../lib/teact/teact'; import React, { useCallback } from '../../lib/teact/teact'; import Button from '../ui/Button'; import appInactivePath from '../../assets/app-inactive.png'; import './AppInactive.scss'; const AppInactive: FC = () => { const handleReload = useCallback(() => { window.location.reload(); }, []); return (

Such error, many tabs

Telegram supports only one active tab with the app.
Please reload this page to continue using this tab or close it.
); }; export default AppInactive;