Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AJGeel committed Oct 20, 2024
1 parent 3ef8aad commit f3b3be3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/history/History.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useQuery } from "@tanstack/react-query";
import { addHours, format, parseISO } from "date-fns";
import { format, parseISO } from "date-fns";
import { useMemo, useState } from "react";
import { InView } from "react-intersection-observer";

Expand Down Expand Up @@ -83,7 +83,7 @@ const History = () => {
onClick={() => {
alert("TODO: Delete the history range");
}}
className="rounded-md bg-gray-50 px-1.5 py-0.5 text-xs border border-gray-200 duration-150 hover:border-black hover:bg-black hover:text-white focus-visible:ring-2 ring-offset-2 ring-gray-300 outline-none"
className="rounded-md border border-gray-200 bg-gray-50 px-1.5 py-0.5 text-xs outline-none ring-gray-300 ring-offset-2 duration-150 hover:border-black hover:bg-black hover:text-white focus-visible:ring-2"
>
Delete
</button>
Expand Down

0 comments on commit f3b3be3

Please sign in to comment.