Skip to content

Commit

Permalink
chore: change the search bar text
Browse files Browse the repository at this point in the history
  • Loading branch information
ylimezhang committed Oct 12, 2024
1 parent 115e7ce commit 8fb922e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/dashboard/components/elimination-tree/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import Tree from "../../../../components/tree";
import { useEffect, useMemo, useState } from "react";
import { Button } from "@/components/ui/button";
import { ArrowLeft, ArrowRight, Undo2 } from "lucide-react";
import useMultiWinnerDataStore from "@/store/MultiWinnerData";
import TooltipWithIcon from "@/app/dashboard/components/Information-icon-text";
import useMultiWinnerDataStore from "@/store/multi-winner-data";

function EliminationTree() {
const { multiWinner } = useMultiWinnerDataStore();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function SearchDropdown({
<Input
value={searchTerm}
type="search"
placeholder="Search for a candidate"
placeholder="Search for candidate"
onChange={(e) => setSearchTerm(e.target.value)}
onFocus={() => setIsOpen(true)}
onBlur={() => setIsOpen(false)}
Expand Down

0 comments on commit 8fb922e

Please sign in to comment.