From 636634e519da956cee68e830064c6f9d0cd4b9c2 Mon Sep 17 00:00:00 2001 From: Rafal Dziegielewski Date: Tue, 13 Aug 2024 13:49:56 +0200 Subject: [PATCH] fix: export action utility functions via frontend bundle entry --- src/frontend/bundle-entry.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/bundle-entry.jsx b/src/frontend/bundle-entry.jsx index 144a5cdf2..2ce33a227 100644 --- a/src/frontend/bundle-entry.jsx +++ b/src/frontend/bundle-entry.jsx @@ -13,6 +13,7 @@ import { AppLoader } from './components/index.js' import Login from './components/login/index.js' import BasePropertyComponent, { CleanPropertyComponent } from './components/property-type/index.js' import * as PropertyComponentUtils from './components/property-type/utils/index.js' +import * as ActionUtils from './interfaces/action/index.js' import withNotice from './hoc/with-notice.js' import * as Hooks from './hooks/index.js' import createStore from './store/store.js' @@ -75,5 +76,6 @@ export default { ...AppComponents, ...ActionComponents, ...Hooks, + ...ActionUtils, flat, }