We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ae3d5e commit 8bd2dc1Copy full SHA for 8bd2dc1
app/code/Magento/Checkout/view/frontend/web/js/view/shipping.js
@@ -245,11 +245,10 @@ define(
245
var shippingAddress,
246
addressData,
247
loginFormSelector = 'form[data-role=email-with-possible-login]',
248
- emailValidationResult = customer.isLoggedIn(),
249
- errortext = $t('Please specify a shipping method.');
+ emailValidationResult = customer.isLoggedIn();
250
251
if (!quote.shippingMethod()) {
252
- this.errorValidationMessage(errortext);
+ this.errorValidationMessage($t('Please specify a shipping method.'));
253
254
return false;
255
}
0 commit comments