fix: remove comments

This commit is contained in:
hexxa 2022-02-27 18:52:29 +08:00 committed by Hexxa
parent 68c4949f2e
commit e5728aa96c
2 changed files with 0 additions and 6 deletions

View file

@ -2,7 +2,6 @@ import { List, Map } from "immutable";
export interface Row {
// elem: React.ReactNode; // element to display
val: Object; // original object value
sortVals: List<string>; // sortable values in order
}

View file

@ -258,11 +258,6 @@ export class Updater {
if (status !== "") {
return status;
}
// TODO: this part is duplicated in the panel_files.tsx
// const sortKeys = List<string>([
// this.props.msg.pkg.get("item.type"),
// this.props.msg.pkg.get("item.name"),
// ]);
};
setItems = async (dirParts: List<string>): Promise<string> => {