Skip to content

Commit

Permalink
comment resolution 3
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianWhitneyAI committed May 22, 2024
1 parent abfca78 commit 32f367a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/core/components/AnnotationPicker/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import ListPicker from "../ListPicker";
import { ListItem } from "../ListPicker/ListRow";
import { TOP_LEVEL_FILE_ANNOTATION_NAMES } from "../../constants";
import Annotation from "../../entity/Annotation";

import { metadata, selection } from "../../state";

interface Props {
Expand Down
3 changes: 2 additions & 1 deletion packages/core/state/selection/reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import {
REMOVE_QUERY,
RemoveQuery,
SetSortColumnAction,
SetFileFiltersAction,
} from "./actions";
import FileSort, { SortOrder } from "../../entity/FileSort";
import Tutorial from "../../entity/Tutorial";
Expand Down Expand Up @@ -101,7 +102,7 @@ export default makeReducer<SelectionStateBranch>(
...state,
fileGridColumnCount: action.payload,
}),
[SET_FILE_FILTERS]: (state, action) => ({
[SET_FILE_FILTERS]: (state, action: SetFileFiltersAction) => ({
...state,
filters: action.payload,
recentAnnotations: uniq([
Expand Down

0 comments on commit 32f367a

Please sign in to comment.