Skip to content

Commit

Permalink
[#933] Update initial state to align w/ background process
Browse files Browse the repository at this point in the history
  • Loading branch information
ifirmawan committed Jan 16, 2024
1 parent 2873ace commit d01842c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"authenticationType": ["code_assignment", "username", "password"],
"serverURL": null,
"debugMode": false,
"dataSyncInterval": 1,
"dataSyncInterval": 3600,
"errorHandling": true,
"loggingLevel": "verbose",
"appVersion": "1.2.0",
Expand Down
2 changes: 1 addition & 1 deletion app/src/store/buildParams.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const BuildParamsState = new Store({
],
serverURL: defaultBuildParams?.serverURL,
debugMode: defaultBuildParams?.debugMode || false,
dataSyncInterval: defaultBuildParams?.dataSyncInterval || 300,
dataSyncInterval: defaultBuildParams?.dataSyncInterval || 3600,
errorHandling: defaultBuildParams?.errorHandling || true,
loggingLevel: defaultBuildParams?.loggingLevel || 'verbose',
appVersion: defaultBuildParams?.appVersion || '1.0.0',
Expand Down
2 changes: 1 addition & 1 deletion app/src/store/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const UserState = new Store({
password: '',
token: null,
syncWifiOnly: false,
syncInterval: 300,
// syncInterval: 300,
forms: [],
});

Expand Down

0 comments on commit d01842c

Please sign in to comment.