chore: remove comments

This commit is contained in:
Tristan Yang
2022-09-02 21:28:37 +08:00
parent 0c431f325a
commit 9b52b4423f
11 changed files with 6 additions and 23 deletions
@@ -49,7 +49,6 @@ const SessionContextMenu: FC<Props> = ({
};
const handleReadAll = () => {
// console.log("last mid", mids, lastMid);
if (mid) {
const param =
context == "user" ? { users: [{ uid: +id, mid }] } : { groups: [{ gid: +id, mid }] };
-1
View File
@@ -35,7 +35,6 @@ const Session: FC<IProps> = ({
accept: [NativeTypes.FILE],
drop({ files }) {
if (files.length) {
// console.log(files, rest);
const filesData = files.map((file) => {
const { size, type, name } = file;
const url = URL.createObjectURL(file);