mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-22 21:06:37 +00:00
Format all files
This commit is contained in:
@@ -21,10 +21,7 @@ type Props = {
|
||||
type: string | null;
|
||||
};
|
||||
|
||||
export default function DNSRecordsTable({
|
||||
records,
|
||||
type
|
||||
}: Props) {
|
||||
export default function DNSRecordsTable({ records, type }: Props) {
|
||||
const t = useTranslations();
|
||||
const env = useEnvContext();
|
||||
|
||||
@@ -114,11 +111,5 @@ export default function DNSRecordsTable({
|
||||
...(env.env.flags.usePangolinDns ? [statusColumn] : [])
|
||||
];
|
||||
|
||||
return (
|
||||
<DNSRecordsDataTable
|
||||
columns={columns}
|
||||
data={records}
|
||||
type={type}
|
||||
/>
|
||||
);
|
||||
return <DNSRecordsDataTable columns={columns} data={records} type={type} />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user