gatsby-matrix-theme 48.0.1 → 48.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [48.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v48.0.1...v48.0.2) (2024-07-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * feedback translation fix ([3c913b7](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/3c913b7e5db66e208d57a23d6bcf2c7c132746d3))
7
+
8
+
9
+ ### Config
10
+
11
+ * update theme ([7984b59](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/7984b59c609c89e8c529ba5cf3acb45cafeb7080))
12
+
1
13
  ## [48.0.1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v48.0.0...v48.0.1) (2024-07-16)
2
14
 
3
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "48.0.1",
3
+ "version": "48.0.2",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "@react-icons/all-files": "^4.1.0",
27
27
  "gatsby": "^5.11.0",
28
- "gatsby-core-theme": "34.0.6",
28
+ "gatsby-core-theme": "35.0.0",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "prop-types": "15.7.2",
@@ -60,10 +60,10 @@ const FeedBack = ({
60
60
  const feedbackText = () => (
61
61
  <>
62
62
  {voted === null ? (
63
- <div className={styles?.details || ''}>{`${trueVotes} $useTranslate(
63
+ <div className={styles?.details || ''}>{`${trueVotes} ${useTranslate(
64
64
  'of_feedback',
65
65
  'of'
66
- )} ${trueVotes + falseVotes} $useTranslate(
66
+ )} ${trueVotes + falseVotes} ${useTranslate(
67
67
  'user_recomend_feedback',
68
68
  'users recommend [casinoTitle]'
69
69
  ).replace('[casinoTitle]', casinoTitle)} `}</div>