update reference

This commit is contained in:
2026-03-29 19:21:27 +02:00
parent f78402e021
commit 4757cf47c0
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import CardRow from '../components/CardRow/CardRow';
import SearchBar from '../components/SearchBar/SearchBar';
import { CardContext } from '../store/CardContext';
import { fetchCards, fetchCardImage } from '../services/api';
import DatabaseFooter from '../components/DatabaseFooter/DatabaseFooter';
import DatabaseFooter from '../components/Footer/Footer';
// Debounce hook
function useDebouncedValue(value, delay = 250) {
@@ -88,7 +88,7 @@ function HomePage() {
<p>Click a card to see its image</p>
)}
</div>
<DatabaseFooter />
<Footer />
</div>
);
}