Skip to content

Commit

Permalink
Merge pull request #1496 from tidepool-org/release-1.83.1
Browse files Browse the repository at this point in the history
Release 1.83.1 to develop
  • Loading branch information
henry-tp authored Jan 10, 2025
2 parents bea54e5 + 469ce00 commit 5c0f3a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ const getCGMClipboardText = (patient, agpCGM, t) => {

const currentDate = moment().format('MMMM Do, YYYY');

const dateRange = formatDateRange(oldestDatum.time, newestDatum.time, timezoneName);
// TODO: Add test for no data scenario
const dateRange = formatDateRange(oldestDatum?.time, newestDatum?.time, timezoneName);

const targetRange = bgUnits === MGDL_UNITS ? '70-180' : '3.9-10.0';
const lowRange = bgUnits === MGDL_UNITS ? '54-70' : '3.0-3.9';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"node": "20.8.0"
},
"packageManager": "yarn@3.6.4",
"version": "1.83.0",
"version": "1.83.1",
"private": true,
"scripts": {
"test": "TZ=UTC NODE_ENV=test NODE_OPTIONS='--max-old-space-size=4096' yarn karma start",
Expand Down

0 comments on commit 5c0f3a1

Please sign in to comment.