umbracoPath just returns a function

This commit is contained in:
Jacob Overgaard
2023-02-01 10:13:21 +01:00
parent 882ca6938b
commit e7a33cf446

View File

@@ -1,4 +1,3 @@
import type { Path } from 'msw';
export function umbracoPath(path: string): Path {
export function umbracoPath(path: string) {
return `/umbraco/management/api/v1${path}`;
}