fix: fix background jobs

Signed-off-by: allanice001 <allanice001@gmail.com>
This commit is contained in:
allanice001
2025-12-09 15:49:31 +00:00
parent 4d37a6363f
commit fee4c64551
2 changed files with 9 additions and 9 deletions

View File

@@ -1,19 +1,17 @@
import { useEffect, useRef, useState, type FC } from "react"
import { type FC, useEffect, useRef, useState } from "react"
import { useTheme } from "next-themes"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import "rapidoc"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card.tsx"
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select.tsx"
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select.tsx"
type RdThemeMode = "auto" | "light" | "dark"