Skip to content

Commit

Permalink
fix: assignment to const
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Mar 25, 2024
1 parent 61bd9aa commit d5b837c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/validate-sgid-index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ async function idGuid(row) {

async function itemId(row) {
const cellValue = row.get(getFieldName('itemId'));
const layerId = row.get(getFieldName('serverLayerId'));
let layerId = row.get(getFieldName('serverLayerId'));
if (!layerId) {
layerId = 0;
}
Expand Down

0 comments on commit d5b837c

Please sign in to comment.