260322:1648 Correct Coresspondence / Doing RFA / Correct CI
CI Pipeline / build (push) Failing after 12m41s
Build and Deploy / deploy (push) Failing after 2m44s

This commit is contained in:
admin
2026-03-22 16:48:12 +07:00
parent e5deedb42e
commit 11984bfa29
683 changed files with 105251 additions and 29068 deletions
+6 -10
View File
@@ -1,9 +1,9 @@
"use client";
'use client';
import { RFADetail } from "@/components/rfas/detail";
import { notFound, useParams } from "next/navigation";
import { useRFA } from "@/hooks/use-rfa";
import { Loader2 } from "lucide-react";
import { RFADetail } from '@/components/rfas/detail';
import { notFound, useParams } from 'next/navigation';
import { useRFA } from '@/hooks/use-rfa';
import { Loader2 } from 'lucide-react';
export default function RFADetailPage() {
const { uuid } = useParams();
@@ -22,11 +22,7 @@ export default function RFADetailPage() {
if (isError || !rfa) {
// Check if error is 404
return (
<div className="text-center py-20 text-red-500">
RFA not found or failed to load.
</div>
);
return <div className="text-center py-20 text-red-500">RFA not found or failed to load.</div>;
}
return <RFADetail data={rfa} />;