Skip to content

Commit

Permalink
Merge pull request #602 from aehrc/feature/initial
Browse files Browse the repository at this point in the history
Rough implementation of item.initial support
  • Loading branch information
fongsean authored Dec 21, 2023
2 parents 77a3d5a + 0e81c5b commit ce9c9d1
Show file tree
Hide file tree
Showing 26 changed files with 1,224 additions and 1,912 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ function Playground() {
setBuildingState('idle');
}
} catch (error) {
console.log(error);
enqueueSnackbar('JSON string invalid', {
variant: 'error',
preventDuplicate: true
Expand Down
9 changes: 2 additions & 7 deletions apps/smart-forms-app/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,11 @@ import svgr from 'vite-plugin-svgr';
export default defineConfig({
plugins: [react(), svgr()],
optimizeDeps: {
include: ['@aehrc/sdc-assemble', '@aehrc/sdc-populate', '@aehrc/fhir-questionnaire-helpers']
include: ['@aehrc/sdc-assemble', '@aehrc/sdc-populate']
},
build: {
commonjsOptions: {
include: [
/node_modules/,
'@aehrc/sdc-assemble',
'@aehrc/sdc-populate',
'@aehrc/fhir-questionnaire-helpers'
]
include: [/node_modules/, '@aehrc/sdc-assemble', '@aehrc/sdc-populate']
}
},
resolve: { preserveSymlinks: true }
Expand Down
Loading

0 comments on commit ce9c9d1

Please sign in to comment.