From 7745de0e40737125d8da6efb8adf34f98acf0836 Mon Sep 17 00:00:00 2001 From: Gleidson Daniel Silva Date: Fri, 16 Feb 2024 18:18:38 -0300 Subject: [PATCH] chore: remove todos related to actions (#5572) --- app/views/RoomView/index.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index fdb544a3a..b8260d031 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -687,7 +687,6 @@ class RoomView extends React.Component { onEditInit = (messageId: string) => { const { action } = this.state; - // TODO: implement multiple actions running. Quoting, then edit. Edit then quote. if (action) { return; } @@ -736,7 +735,6 @@ class RoomView extends React.Component { } return; } - // TODO: implement multiple actions running. Quoting, then edit. Edit then quote. if (action) { return; } @@ -773,7 +771,6 @@ class RoomView extends React.Component { }; onReactionInit = (messageId: string) => { - // TODO: implement multiple actions running. Quoting, then edit. Edit then quote. if (this.state.action) { return; } @@ -790,7 +787,6 @@ class RoomView extends React.Component { onMessageLongPress = (message: TAnyMessageModel) => { const { action } = this.state; - // TODO: implement multiple actions running. Quoting, then edit. Edit then quote. if (action && action !== 'quote') { return; }