Skip to content

Commit

Permalink
24.08.26: fixed imports [WTEL-4771]
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov committed Aug 18, 2024
1 parent 0ca98f6 commit 8ada8cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webitel/ui-sdk",
"version": "24.8.24",
"version": "24.8.26",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
4 changes: 2 additions & 2 deletions src/store/new/helpers/createTableStoreModule.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import tableStoreModule from '../modules/tableStoreModule/tableStoreModule';
import { createBaseStoreModule } from './createBaseStoreModule';
import tableStoreModule from '../modules/tableStoreModule/tableStoreModule.js';
import { createBaseStoreModule } from './createBaseStoreModule.js';

export const createTableStoreModule = (modules = []) => {
const modulesArr = Array.isArray(modules) ? modules : [modules];
Expand Down
2 changes: 1 addition & 1 deletion src/store/new/modules/baseStoreModule/baseStoreModule.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import set from 'lodash/set';
import set from 'lodash/set.js';

const state = () => ({});

Expand Down

0 comments on commit 8ada8cd

Please sign in to comment.