Skip to content

Commit

Permalink
fix: prevent Provider to be regenerated (#88)
Browse files Browse the repository at this point in the history
* fix: prevent Provider to be regenerated

* bump: version

* fix: lint issue
  • Loading branch information
Grafikart authored Dec 11, 2023
1 parent ccf65eb commit 79e6e95
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "drama-queen-container",
"private": true,
"version": "1.3.18",
"version": "1.3.19",
"workspaces": [
"drama-queen",
"queen-v2",
Expand All @@ -23,5 +23,8 @@
"kill-port": "^2.0.1",
"lerna": "^6.5.1",
"vite-tsconfig-paths": "^4.0.5"
},
"volta": {
"node": "16.20.2"
}
}
2 changes: 1 addition & 1 deletion queen-v2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "queen-v2",
"version": "1.1.6",
"version": "1.1.7",
"description": "Web application for the management of questionnaires powered by Lunatic",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ function noDataChange() {

const preferences = ['COLLECTED'];
const features = ['VTL', 'MD'];
const custom = { RouterLink: Link };

const missingShortcut = { dontKnow: 'f2', refused: 'f4' };

Expand Down Expand Up @@ -68,7 +69,7 @@ function LightOrchestrator({
});

lunaticStateRef.current = useLunatic(source, initialData, {
custom: { RouterLink: Link },
custom,
lastReachedPage: lastReachedPage ?? '1',
features,
pagination,
Expand Down

0 comments on commit 79e6e95

Please sign in to comment.