Skip to content

Commit

Permalink
fix: swap out bad loader for good one
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed Apr 19, 2024
1 parent 79b1df4 commit 367ccc2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/forge/src/routes/_authenticated/_reponly/users/$id.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ import { Training } from "@ignis/types/users.ts";
import { useQuery } from "@tanstack/react-query";
import { createFileRoute, notFound } from "@tanstack/react-router";
import { Badge } from "@ui/components/ui/badge.tsx";
import { Loader } from "@ui/components/ui/loader";
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@ui/components/ui/table.tsx";
import { isAxiosError } from "axios";
import { Check, Loader, X } from "lucide-react";
import { Check, X } from "lucide-react";

async function getData(id: string) {
const [user, trainings, signIns] = await Promise.all([getUser(id), getUserTraining(id), getUserSignIns(id)]);
Expand Down

0 comments on commit 367ccc2

Please sign in to comment.