Skip to content

Commit

Permalink
hotfix 2 for adding product in batch
Browse files Browse the repository at this point in the history
  • Loading branch information
ikethecoder committed Jun 11, 2021
1 parent fad9048 commit d60339b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lists/Product.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module.exports = {
} else {
resolvedData['appId'] = newProductID();
}
if ('authedItem' in context && 'namespace' in context['authedItem']) {
if (context['authedItem'] && 'namespace' in context['authedItem']) {
resolvedData['namespace'] = context['authedItem']['namespace'];
}
}
Expand Down

0 comments on commit d60339b

Please sign in to comment.