Skip to content

Commit

Permalink
Merge pull request #341 from HoomanDgtl/main
Browse files Browse the repository at this point in the history
fix: #340 build error
  • Loading branch information
HoomanDgtl authored Aug 22, 2024
2 parents d0291e5 + c599289 commit 66b7a8f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/components/gpu-table/gpu-table.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
import {
QueryClient,
QueryClientProvider,
useQuery,
} from "@tanstack/react-query";
import axios from "axios";
import React, { useEffect, useState } from "react";
import {
HoverCard,
HoverCardContent,
HoverCardTrigger,
} from "@/components/ui/hover-card";
import { Info } from "lucide-react";
import { gpus } from "@/utils/api";
import {
QueryClient,
QueryClientProvider,
useQuery,
} from "@tanstack/react-query";
import axios from "axios";
import clsx from "clsx";
import CheckBox from "./checkbox";
import { Info } from "lucide-react";
import React from "react";
import { Skeleton } from "../ui/skeleton";
import Filter, { defaultFilters, type Filters } from "./filter";
import Sort from "./sort";
import { useStorage } from "@/utils/store";
import { Skeleton } from "../ui/skeleton";
export interface Gpus {
availability: { total: number; available: number };
models: Array<{
Expand Down Expand Up @@ -106,6 +104,8 @@ export const modifyModel = (model: string) => {
? "A6000"
: model?.includes("rtx")
? model?.replace("rtx", "RTX ").replace("ti", " Ti")
: model?.includes("gtx")
? model?.replace("gtx", "GTX ").replace("ti", " Ti")
: model;
};

Expand Down

0 comments on commit 66b7a8f

Please sign in to comment.