Skip to content

Commit 711f689

Browse files
committed
Add payment method limitation and update Apollo
1 parent 532ca9f commit 711f689

File tree

4 files changed

+22
-14
lines changed

4 files changed

+22
-14
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,13 @@
5656

5757
## Known limitations
5858

59-
Overall the application is working as intended, but it has not been tested extensively in a production environment. More testing and debugging is required before deploying it in a production nevironment.
60-
59+
Overall the application is working as intended, but it has not been tested extensively in a production environment.
60+
More testing and debugging is required before deploying it in a production nevironment.
61+
6162
With that said, keep the following in mind:
6263

63-
- Currently only simple products and variable products work without any issues. External/affilate products are not working.
64+
- Currently only simple products and variable products work without any issues. Other product types are not known to work.
65+
- Only Cash On Delivery (COD) is currently supported. More payment methods may be added later.
6466

6567
## TODO
6668

components/Footer/Footer.component.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const Footer = () => {
55
return (
66
<>
77
<footer className="container px-6 mx-auto text-center bg-white border border-gray-300 rounded-lg shadow">
8-
<div className="p-6">Copyright &copy; {new Date().getFullYear()} Daniel</div>
8+
<div className="p-6">Copyright &copy; {new Date().getFullYear()} Daniel F aka w3bdesign</div>
99
</footer>
1010
</>
1111
);

package-lock.json

Lines changed: 14 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-woocommerce",
3-
"version": "0.9.94",
3+
"version": "0.9.95",
44
"description": "Nextjs WooCommerce webshop",
55
"main": "index.js",
66
"scripts": {
@@ -12,7 +12,7 @@
1212
"author": "",
1313
"license": "ISC",
1414
"dependencies": {
15-
"@apollo/client": "^3.1.5",
15+
"@apollo/client": "^3.2.0",
1616
"@types/react": "^16.9.49",
1717
"algoliasearch": "^4.5.1",
1818
"graphql": "^15.3.0",

0 commit comments

Comments
 (0)