Make refresh work

This commit is contained in:
Owen
2025-10-30 17:25:49 -07:00
parent b2cf152b9e
commit f60c2f4fb9
9 changed files with 590 additions and 581 deletions

View File

@@ -8,7 +8,6 @@ import CopyToClipboard from "@app/components/CopyToClipboard";
export type DNSRecordRow = {
id: string;
domainId: string;
recordType: string; // "NS" | "CNAME" | "A" | "TXT"
baseDomain: string | null;
value: string;
@@ -17,15 +16,11 @@ export type DNSRecordRow = {
type Props = {
records: DNSRecordRow[];
domainId: string;
isRefreshing?: boolean;
type: string | null;
};
export default function DNSRecordsTable({
records,
domainId,
isRefreshing,
type
}: Props) {
const t = useTranslations();
@@ -114,7 +109,6 @@ export default function DNSRecordsTable({
<DNSRecordsDataTable
columns={columns}
data={records}
isRefreshing={isRefreshing}
type={type}
/>
);