Skip to content

Commit

Permalink
fix: replace PulseLoader with standard loader
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed Apr 16, 2024
1 parent b03da1a commit 4ccfab1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { Agreement } from "@ignis/types/root";
import { useQuery } from "@tanstack/react-query";
import { createFileRoute, useNavigate } from "@tanstack/react-router";
import { Badge } from "@ui/components/ui/badge";
import { Loader } from "@ui/components/ui/loader";
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@ui/components/ui/table";
import { PulseLoader } from "react-spinners";

export default function Component() {
const navigate = useNavigate();
Expand All @@ -21,7 +21,7 @@ export default function Component() {
});

if (isLoading) {
return <PulseLoader />;
return <Loader />;
}

if (isError || !agreements) {
Expand Down

0 comments on commit 4ccfab1

Please sign in to comment.