Skip to content

Commit

Permalink
unused import and const -> let
Browse files Browse the repository at this point in the history
  • Loading branch information
interim17 committed Sep 25, 2023
1 parent 8ddf9d2 commit 72c38cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/simularium/SelectionInterface.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { filter, find, set, uniq } from "lodash";
import { filter, find, uniq } from "lodash";
import { EncodedTypeMapping } from "./types";
import { convertColorNumberToString } from "../visGeometry/color-utils";
import _ from "lodash";

// An individual entry parsed from an encoded name
// The encoded names can be just a name or a name plus a
Expand Down
2 changes: 1 addition & 1 deletion src/viewport/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ class Viewport extends React.Component<
} = this.props;
colorChanges.forEach((colorChange) => {
const { agents, color } = colorChange;
let uiDisplayData = this.selectionInterface.getUIDisplayData();
const uiDisplayData = this.selectionInterface.getUIDisplayData();
const agentIds =
this.selectionInterface.getAgentIdsByNamesAndTags(agents);

Expand Down

0 comments on commit 72c38cd

Please sign in to comment.