Skip to content

Commit a7f07d3

Browse files
committed
Fix typing errors from new i18n version
1 parent 52c2f47 commit a7f07d3

3 files changed

Lines changed: 23 additions & 19 deletions

File tree

package-lock.json

Lines changed: 16 additions & 16 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
@@ -19,7 +19,7 @@
1919
"focus-trap-react": "^12.0.0",
2020
"formik": "^2.4.9",
2121
"http-proxy-middleware": "^3.0.5",
22-
"i18next": "^25.8.11",
22+
"i18next": "25.8.11",
2323
"i18next-browser-languagedetector": "^8.2.1",
2424
"i18next-http-backend": "^3.0.2",
2525
"lodash": "^4.17.23",
@@ -28,7 +28,7 @@
2828
"react-datepicker": "^8.8.0",
2929
"react-dom": "^19.2.4",
3030
"react-hotkeys-hook": "^5.2.4",
31-
"react-i18next": "^16.5.0",
31+
"react-i18next": "16.5.0",
3232
"react-icons": "^5.5.0",
3333
"react-js-cron": "^5.0.1",
3434
"react-redux": "^9.2.0",

src/components/events/LifeCyclePolicies.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,11 @@ const LifeCyclePolicies = () => {
108108
<h4>{t("TABLE_SUMMARY", { numberOfRows: policiesTotal })}</h4>
109109
</div>
110110
{/* Include table component */}
111-
<Table templateMap={lifeCyclePoliciesTemplateMap} />
111+
<Table
112+
templateMap={lifeCyclePoliciesTemplateMap}
113+
fetchResource={fetchLifeCyclePolicies}
114+
loadResourceIntoTable={loadLifeCyclePoliciesIntoTable}
115+
/>
112116
</MainView>
113117
<Footer />
114118

0 commit comments

Comments
 (0)