mario-core 2.9.316-lang → 2.9.317-lang

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/dist/index.js CHANGED
@@ -48064,7 +48064,7 @@ var initialState = {
48064
48064
  isLoginGoogle: false,
48065
48065
  inforUserGoogle: null,
48066
48066
  language: DEFAULT_LANGUAGE_CODE,
48067
- rtl: "ltr",
48067
+ layoutRTL: "ltr",
48068
48068
  amplitude: {
48069
48069
  user_id: "",
48070
48070
  status: "",
@@ -48119,7 +48119,7 @@ var commonReducer = toolkit.createReducer(initialState, function (builder) {
48119
48119
  }).addCase(setLanguage, function (state, action) {
48120
48120
  state.language = action.payload;
48121
48121
  }).addCase(setRTLLanguage, function (state, action) {
48122
- state.rtl = action.payload;
48122
+ state.layoutRTL = action.payload;
48123
48123
  }).addCase(showFontSize, function (state, action) {
48124
48124
  state.defaultFontSize = action.payload;
48125
48125
  }).addCase(setSandboxMode, function (state, action) {