frontend: fix <Image />

This commit is contained in:
Kentai Radiquum 2024-04-23 22:23:11 +05:00
parent 58ed4007df
commit a03deddbc0
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
6 changed files with 69 additions and 70 deletions

View file

@ -7,10 +7,10 @@ import { usePathname, useRouter } from "next/navigation";
import { CardList } from "@/app/components/CardList/CardList";
import { useSearchParams } from "next/navigation";
export function saveSearches(search) {
function saveSearches(search) {
localStorage.setItem("searches", search);
}
export function getSearches() {
function getSearches() {
return localStorage.getItem("searches");
}