Fix useEffect hook in Navbar.tsx to only fetch links on SheetTrigger click once.

This commit is contained in:
Bram Suurd
2024-05-20 00:59:03 +02:00
parent 131322a9da
commit e7f7afdc52

View File

@@ -74,6 +74,7 @@ function Navbar() {
}, [shouldFocusInput]);
const fetchLinks = async () => {
if (links.length > 0) return;
try {
const res = await pb.collection("categories").getFullList({
expand: "items",