4
0
forked from crowetic/commerce

Fix typo and add missing feature to local config (#582)

* Add customCheckout feature flag to local config

* Fix typo
This commit is contained in:
Chris Vibert 2021-11-29 20:52:43 +07:00 committed by GitHub
parent 82cb719ad6
commit 950a7637a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -93,7 +93,7 @@ const CheckoutSidebarView: FC = () => {
<span>{total}</span> <span>{total}</span>
</div> </div>
<div> <div>
{/* Once data is correcly filled */} {/* Once data is correctly filled */}
<Button <Button
type="submit" type="submit"
width="100%" width="100%"

View File

@ -4,6 +4,7 @@
"wishlist": false, "wishlist": false,
"cart": false, "cart": false,
"search": false, "search": false,
"customerAuth": false "customerAuth": false,
"customCheckout": false
} }
} }