fix message text

This commit is contained in:
Dobromir Popov
2024-06-28 20:10:34 +03:00
parent 0d8d9bc4fd
commit ca92c07d4d

View File

@ -27,7 +27,7 @@ class ErrorBoundary extends React.Component {
render() { render() {
if (this.state.hasError) { if (this.state.hasError) {
// Render any custom fallback UI // Render any custom fallback UI
return <h1>Нещо се обърка при изтриването. Моля, опитай отново и се свържете с нас ако проблема продължи. </h1>; return <h1>Нещо се обърка. Моля, опитай отново и се свържете с нас ако проблема продължи. </h1>;
} }
return this.props.children; return this.props.children;