Skip to content

Commit

Permalink
fix(frontend): pluralize Record
Browse files Browse the repository at this point in the history
  • Loading branch information
thewander02 committed Oct 17, 2024
1 parent 189cfee commit c5b29d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ const exportDnsRecords = () => {

const text = Object.entries(records)
.map(([type, records]) => {
return `; ${type} Record\n${records.map((record) => `${record.name}. 1 IN ${record.type} ${record.content}`).join("\n")}\n`;
return `; ${type} Records\n${records.map((record) => `${record.name}. 1 IN ${record.type} ${record.content}`).join("\n")}\n`;
})
.join("\n");
const blob = new Blob([text], { type: "text/plain" });
Expand Down

0 comments on commit c5b29d5

Please sign in to comment.