Comments, appointments adjustments, fixed some issues

This commit is contained in:
augmentedpotato
2026-04-20 19:19:30 -06:00
parent d3b9c51952
commit 2cb0a94bbb
34 changed files with 402 additions and 104 deletions

View File

@@ -7,6 +7,8 @@ import PetProfile from "@/components/PetProfile";
const API_BASE = "";
//Pet detail page
//Fetches a single pet by ID and passes it to PetProfile
export default function PetDetailPage() {
const { id } = useParams();
const [pet, setPet] = useState(null);