Skip to content

Commit

Permalink
Merge pull request #117 from gfa-cc-after/fix/remove-Vet-text-from-Se…
Browse files Browse the repository at this point in the history
…arch-page

fix: remove Vet text from search page
  • Loading branch information
markkovari authored Sep 27, 2024
2 parents f72b897 + c28faaf commit caa56bc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/src/pages/Search.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button, FormControl, FormLabel, Select } from "@chakra-ui/react";
import { Button, FormControl, Select } from "@chakra-ui/react";
import { useEffect, useState } from "react";
import { type VetDetails, vetList } from "../httpClient";

Expand All @@ -18,7 +18,6 @@ function Search() {
<>
<h1>Search</h1>
<FormControl>
<FormLabel>Vet</FormLabel>
<input onChange={(event) => setSearchWord(event.target.value)} />
<Select placeholder="Select vet">
{vets.map((vetDetails) => (
Expand Down

0 comments on commit caa56bc

Please sign in to comment.