Skip to content

Commit

Permalink
fix(design-land): wrong design examples path
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed Aug 13, 2024
1 parent 729fb3f commit 3ff17ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('CodeExampleService', () => {
element: 'undefined-example',
}));
});
const req = httpMock.expectOne('/assets/design-examples/test.json');
const req = httpMock.expectOne('/assets/design/examples/test.json');
req.flush('test');
httpMock.verify();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export interface DgeniDesignExampleDoc {
providedIn: 'root',
})
export class CodeExampleService {
private docsLocation = '/assets/design-examples/';
private docsLocation = '/assets/design/examples/';
constructor(private httpClient: HttpClient) { }

/**
Expand Down

0 comments on commit 3ff17ff

Please sign in to comment.