Skip to content

Commit

Permalink
fix: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowusr committed Dec 4, 2024
1 parent 752985f commit c27ee15
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/static/modules/reducers/sort-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {SortByExpression, SortDirection, State} from '@/static/new-ui/types/stor
import {SomeAction} from '@/static/modules/actions/types';
import actionNames from '@/static/modules/action-names';
import {applyStateUpdate} from '@/static/modules/utils';
import {SORT_BY_FAILED_RETRIES, SORT_BY_NAME, SORT_BY_TESTS_COUNT} from '@/constants/sort-tests';
import {SORT_BY_FAILED_RETRIES, SORT_BY_NAME, SORT_BY_TESTS_COUNT} from '@/static/constants/sort-tests';

export default (state: State, action: SomeAction): State => {
switch (action.type) {
Expand Down
2 changes: 1 addition & 1 deletion lib/static/new-ui/types/store.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import {CoordBounds} from 'looks-same';
import {DiffModeId, Feature, TestStatus, ViewMode} from '@/constants';
import {
BrowserItem,
Expand All @@ -8,7 +9,6 @@ import {
TestStepCompressed
} from '@/types';
import {HtmlReporterValues} from '@/plugin-api';
import {CoordBounds} from 'looks-same';
import {Point} from '@/static/new-ui/types/index';
import {AcceptableImage} from '@/static/modules/static-image-accepter';
import {CheckStatus} from '@/constants/checked-statuses';
Expand Down

0 comments on commit c27ee15

Please sign in to comment.