Skip to content

Commit 08cd671

Browse files
authored
Merge pull request #834 from w3bdesign/develop
Version 1.0.25
2 parents b36a467 + a472824 commit 08cd671

File tree

5 files changed

+71
-73
lines changed

5 files changed

+71
-73
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The current release has been tested and is confirmed working with the following
7474
- Placeholder for products without images
7575
- Apollo Client with GraphQL
7676
- React Hook Form with form validation and error display
77-
- Animations with React-Spring, Framer Motion and Animate.css
77+
- Animations with Framer Motion and Animate.css
7878
- Loading spinner created with Styled Components
7979
- Shows page load progress with Nprogress during navigation
8080
- Fully responsive design
@@ -106,7 +106,6 @@ With that said, keep the following in mind:
106106

107107
## TODO
108108

109-
- Read https://www.react-spring.io/log and update React-spring to version 9
110109
- Add total to cart/checkout page
111110
- Show stock quantity on individual products
112111
- Copy billing address to shipping address

components/Footer/Footer.component.jsx

Lines changed: 0 additions & 12 deletions
This file was deleted.

package-lock.json

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

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-woocommerce",
3-
"version": "1.0.24",
3+
"version": "1.0.25",
44
"description": "Next.js WooCommerce webshop",
55
"main": "index.js",
66
"scripts": {
@@ -28,7 +28,6 @@
2828
"react-dom": "17.0.2",
2929
"react-hook-form": "^7.30.0",
3030
"react-instantsearch-dom": "^6.24.2",
31-
"react-spring": "^8.0.27",
3231
"styled-components": "^5.3.5",
3332
"uuid": "^8.3.2"
3433
},

pages/_app.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { AppProvider } from 'utils/context/AppContext';
44
import Router from 'next/router';
55
import NProgress from 'nprogress';
66

7-
import Footer from 'components/Footer/Footer.component';
87
import Stickynav from 'components/Footer/Stickynav.component';
98

109
import 'styles/index.css';
@@ -21,7 +20,7 @@ const App = ({ Component, pageProps }) => (
2120
<ApolloProvider client={client}>
2221
<AppProvider>
2322
<Component {...pageProps} />
24-
<Footer />
23+
2524
<Stickynav />
2625
</AppProvider>
2726
</ApolloProvider>

0 commit comments

Comments
 (0)