Skip to content

Commit

Permalink
EPMRPP-96470 || Fix circular dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
iso9000t committed Nov 7, 2024
1 parent b951760 commit 1d82da4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/src/controllers/log/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
*/

import * as logLevels from 'common/constants/logLevels';
import { formatSortingString, SORTING_ASC } from 'controllers/sorting';
import { SORTING_ASC } from 'controllers/sorting/constants';
import { formatSortingString } from 'controllers/sorting/utils';

export const NAMESPACE = 'log';
export const LOG_ITEMS_NAMESPACE = `${NAMESPACE}/logItems`;
Expand Down
2 changes: 1 addition & 1 deletion app/src/controllers/log/storageUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import { getStorageItem, updateStorageItem } from 'common/utils';
import { getStorageItem, updateStorageItem } from 'common/utils/storageUtils';
import { MARKDOWN } from 'common/constants/logViewModes';
import { LOG_TIME_FORMAT_ABSOLUTE } from 'controllers/user/constants';
import {
Expand Down

0 comments on commit 1d82da4

Please sign in to comment.