diff --git a/ReactLibrary/src/components/lines/table/Lines.jsx b/ReactLibrary/src/components/lines/table/Lines.jsx
index 165736f..7af9ab0 100644
--- a/ReactLibrary/src/components/lines/table/Lines.jsx
+++ b/ReactLibrary/src/components/lines/table/Lines.jsx
@@ -34,6 +34,9 @@ const Lines = () => {
return (
<>
+
+ Таблица книг.
+
diff --git a/ReactLibrary/src/components/users/authorization/hooks/AuthorizationFormHook.js b/ReactLibrary/src/components/users/authorization/hooks/AuthorizationFormHook.js
index 330aa0d..33cd1b7 100644
--- a/ReactLibrary/src/components/users/authorization/hooks/AuthorizationFormHook.js
+++ b/ReactLibrary/src/components/users/authorization/hooks/AuthorizationFormHook.js
@@ -46,7 +46,6 @@ const useAuthorizationForm = () => {
const data = await UsersApiService.getAll(expand);
if (data.length !== 0) {
userLogin(data[0].id);
- toast.success('Успешный вход в аккаунт', { id: 'Authorization' });
return true;
}
}
diff --git a/ReactLibrary/src/pages/BooksTable.jsx b/ReactLibrary/src/pages/BooksTable.jsx
index a6d33f1..60be853 100644
--- a/ReactLibrary/src/pages/BooksTable.jsx
+++ b/ReactLibrary/src/pages/BooksTable.jsx
@@ -18,10 +18,7 @@ const BooksTable = () => {
}
return (
<>
-
- Таблица книг.
-
-
+
>
);
};