From ca92c07d4d0c7a25a58c61bd437765e289e988ec Mon Sep 17 00:00:00 2001 From: Dobromir Popov Date: Fri, 28 Jun 2024 20:10:34 +0300 Subject: [PATCH] fix message text --- components/ErrorBoundary.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ErrorBoundary.tsx b/components/ErrorBoundary.tsx index 2dbbd89..87a148f 100644 --- a/components/ErrorBoundary.tsx +++ b/components/ErrorBoundary.tsx @@ -27,7 +27,7 @@ class ErrorBoundary extends React.Component { render() { if (this.state.hasError) { // Render any custom fallback UI - return

Нещо се обърка при изтриването. Моля, опитай отново и се свържете с нас ако проблема продължи.

; + return

Нещо се обърка. Моля, опитай отново и се свържете с нас ако проблема продължи.

; } return this.props.children;