Skip to content

Commit

Permalink
fix unnecessary nullish coallescence
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl11 committed Jan 17, 2025
1 parent 655ac5e commit a51a6c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const absorbanceReaderInitialize: CommandCreator<AbsorbanceReaderInitiali
key: uuid(),
params: {
moduleId,
measureMode: mode ?? 'single',
measureMode: mode,
sampleWavelengths: wavelengths,
...(referenceWavelength != null ? { referenceWavelength } : {}),
},
Expand Down

0 comments on commit a51a6c1

Please sign in to comment.