final refactor
This commit is contained in:
parent
816dd9055b
commit
4f062eb80c
1 changed files with 3 additions and 3 deletions
|
|
@ -272,8 +272,8 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
arePagePrerequisitesValid() {
|
||||
console.log('arePagePrereqsValid was just called');
|
||||
if (useMainStore().hasSubmittedOrder) {
|
||||
const hasSubmittedOrder = useMainStore().hasSubmittedOrder();
|
||||
if (hasSubmittedOrder) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -286,7 +286,7 @@ export default {
|
|||
&& serviceLocation.zipCode
|
||||
);
|
||||
|
||||
const { providerLocation } = serviceLocation.provider.address;
|
||||
const providerLocation = serviceLocation.provider.address;
|
||||
const dropOffInShopReqs = !!(
|
||||
providerLocation.streetAddress
|
||||
&& providerLocation.city
|
||||
|
|
|
|||
Loading…
Reference in a new issue