Skip to content

Commit 1a0c4fb

Browse files
committed
Update domain.handlers.ts
1 parent a594cd1 commit 1a0c4fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mocks/handlers/document/domain.handlers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const domainHandlers = [
88
rest.get(umbracoPath(`${UMB_SLUG}/:id/domains`), (req, res, ctx) => {
99
const id = req.params.id as string;
1010
if (!id) return;
11-
const response = umbDocumentMockDb.getDomainsForDocument(id);
11+
const response = umbDocumentMockDb.getDomainsForDocument();
1212
return res(ctx.status(200), ctx.json(response));
1313
}),
1414
];

0 commit comments

Comments
 (0)