Skip to content

Commit d43bea3

Browse files
committed
fix: typo
1 parent 27b315c commit d43bea3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/clients/wroom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,5 +429,5 @@ export function getWorkingDocumentsUrlForCustomType(
429429
const { repo, host, customTypeId } = args;
430430
const url = new URL("builder/working", getWroomUrl(repo, host));
431431
url.searchParams.set("customTypes", customTypeId);
432-
return url.href
432+
return url.href;
433433
}

src/commands/push.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ async function removeCustomTypeWithDocumentHandling(
248248
const plural = documentCount === 1 ? "" : "s";
249249
throw new CommandError(
250250
`Type "${id}" has ${documentCount} associated page${plural}. ` +
251-
`Deleting it type will also permanently delete all associated pages: \n` + getWorkingDocumentsUrlForCustomType({ repo, host, customTypeId: id }) + "\n\n" +
251+
`Deleting it will also permanently delete all associated pages: \n` + getWorkingDocumentsUrlForCustomType({ repo, host, customTypeId: id }) + "\n\n" +
252252
`Pass --delete-pages to confirm this cascading deletion.`,
253253
);
254254

0 commit comments

Comments
 (0)