Skip to content

Commit

Permalink
fix(addon): fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aurrelhebert committed Nov 28, 2023
1 parent 59b22b1 commit 8ece4cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/addon.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function validateAddonVersionAndOptions (region, version, addonOptions, provider
const optionNames = availableOptions.map(({ name }) => name).join(',');
let availableOptionsError = null;
if (optionNames.length > 0) {
availableOptionsError = `Avalailble options are: ${optionNames}.`;
availableOptionsError = `Available options are: ${optionNames}.`;
}
else {
availableOptionsError = 'No options are available for this plan.';
Expand Down

0 comments on commit 8ece4cd

Please sign in to comment.