Skip to content

Commit

Permalink
bye squigglies
Browse files Browse the repository at this point in the history
  • Loading branch information
ellie committed Apr 10, 2024
1 parent 7927565 commit 64c0fda
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ui/src/components/HistorySearch.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { useState } from "react";
import {
AdjustmentsHorizontalIcon,
ArrowPathIcon,
} from "@heroicons/react/24/outline";
import { ArrowPathIcon } from "@heroicons/react/24/outline";
import { MagnifyingGlassIcon } from "@heroicons/react/20/solid";
import { invoke } from "@tauri-apps/api/core";

export default function HistorySearch(props) {
interface HistorySearchProps {
refresh: (query: string) => void;
}

export default function HistorySearch(props: HistorySearchProps) {
let [searchQuery, setSearchQuery] = useState("");

return (
Expand All @@ -31,7 +31,7 @@ export default function HistorySearch(props) {
autoComplete="off"
autoCapitalize="off"
autoCorrect="off"
spellCheck="off"
spellCheck="false"
type="search"
name="search"
onChange={(query) => {
Expand Down

0 comments on commit 64c0fda

Please sign in to comment.