@candlerip/shared3 0.0.71 → 0.0.72

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.71",
3
+ "version": "0.0.72",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  import { CookieConsent } from '../../../cookie/index.js';
2
2
  import { CookiePolicyPageDictionary, Language } from '../../../dictionary/index.js';
3
3
  export interface CookiePolicyPageServerSideProps {
4
- cookieConsent: CookieConsent;
4
+ cookieConsent?: CookieConsent;
5
5
  dictionary: CookiePolicyPageDictionary;
6
6
  language: Language;
7
7
  }