Skip to content

Commit

Permalink
(fix) Exports should reference the result of getSync / getAsync (#1239)
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen authored Jun 26, 2023
1 parent ff9694e commit 52bfb2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"git-blame.gitWebUrl": ""
"git-blame.gitWebUrl": "",
"angular.enable-strict-mode-prompt": false
}
2 changes: 1 addition & 1 deletion packages/esm-patient-forms-app/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function startupApp() {
export const formsDetailedOverview = () =>
getAsyncLifecycle(() => import('./forms/forms-detailed-overview.component'), options);

export const formsAndNotesDashboardLink = () =>
export const formsAndNotesDashboardLink =
// t('forms_link', 'Forms & Notes')
getSyncLifecycle(
createDashboardLink({
Expand Down

0 comments on commit 52bfb2b

Please sign in to comment.