New problem with SearchUI Module 1

After applying the fix in the previous issue, I get a new problem trying to complete the module (the same problem is occurring in the locator training, by the way.)

The npm server starts, but the following error occurs when it starts up:
Unable to generate test data from command: `yext pages generate-test-data –
printDocuments --featuresConfig {"features":,"streams":}

Selecting the \search link in the browser then causes the following error (and a 404 page in the browser):
–slug %2Fsearch`Cannot find document corresponding to slug: %2Fsearch

Any suggestions?

It seems that the issue is with getPath. In the yext starter template, the call is:

 export const getPath: GetPath<TemplateProps> = () => {
    return "search";
 };

In the unit sample code, the call is:

 export const getPath: GetPath<TemplateProps> = () => {
    return "/search";
 };

It turns out that the leading / renders as part of the page name (/search vs search) breaks the link, at least for my Windows dev machine.