We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b962cb commit 4d588e9Copy full SHA for 4d588e9
app/layout.tsx
@@ -13,7 +13,6 @@ import { Header } from "@/components/Header";
13
import { ProgressBar } from "@/components/ProgressBar";
14
15
export const metadata: Metadata = {
16
- robots: "noindex, nofollow",
17
title: "My Lib",
18
};
19
components/categories/CategoriesList.tsx
@@ -26,10 +26,7 @@ export const CategoriesList = () => {
26
const { currentCategories, setCurrentCategories } = useCategories();
27
28
useEffect(() => {
29
- // Initial set of categories
30
- if (categories.length) {
31
- setCurrentCategories(categories);
32
- }
+ setCurrentCategories(categories);
33
}, [categories]);
34
35
const onFinishCreatingCategory = useCallback(() => {
0 commit comments