Skip to content

Commit 54f4259

Browse files
committed
feat(todo-app): minor refinements
1 parent 192e739 commit 54f4259

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

todo-app/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27-
<title>React App</title>
27+
<title>Todo App</title>
2828
</head>
2929
<body>
3030
<noscript>You need to enable JavaScript to run this app.</noscript>

todo-app/public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "React App",
3-
"name": "Create React App Sample",
2+
"short_name": "Todo App",
3+
"name": "TodoApp Example (by feature-sliced)",
44
"icons": [
55
{
66
"src": "favicon.ico",

todo-app/src/pages/task-details/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const TaskDetailsPage = (props: Props) => {
1919
taskModel.effects.getTaskByIdFx({ taskId });
2020
}, [taskId]);
2121

22+
// Можно часть логики перенести в entity/task/card (как контейнер)
2223
if (!task && !isLoading) {
2324
return (
2425
<Result

0 commit comments

Comments
 (0)