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 e8fef2a commit 1d5a04bCopy full SHA for 1d5a04b
src/pages/error/index.tsx
@@ -4,6 +4,7 @@ import React from "react";
4
import { ErrorDefinitions } from "app/error-handling";
5
import { Auth, HeroSheet } from "features";
6
import { AppError } from "models";
7
+import { useTitle } from "../helpers";
8
9
type Props = {
10
/** Приходящая ошибка от обработчика */
@@ -36,6 +37,7 @@ const useAppErrors = (error: AppError) => {
36
37
* @remark Отображается при возникающих ошибках в приложении
38
*/
39
const ErrorPage = ({ error }: Props) => {
40
+ useTitle("Github Client - Some error happened");
41
const { action } = useAppErrors(error);
42
43
return (
0 commit comments