260318:1401 Fix UUID #05
Build and Deploy / deploy (push) Failing after 11m8s

This commit is contained in:
admin
2026-03-18 14:01:32 +07:00
parent ba642e7e42
commit e5769269a8
37 changed files with 460 additions and 328 deletions
@@ -6,11 +6,11 @@ import { useRFA } from "@/hooks/use-rfa";
import { Loader2 } from "lucide-react";
export default function RFADetailPage() {
const { id } = useParams();
const { uuid } = useParams();
if (!id) notFound();
if (!uuid) notFound();
const { data: rfa, isLoading, isError } = useRFA(String(id));
const { data: rfa, isLoading, isError } = useRFA(String(uuid));
if (isLoading) {
return (