chore: remove todos related to actions (#5572)

This commit is contained in:
Gleidson Daniel Silva 2024-02-16 18:18:38 -03:00 committed by GitHub
parent 079b401b38
commit 7745de0e40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 4 deletions

View File

@ -687,7 +687,6 @@ class RoomView extends React.Component<IRoomViewProps, IRoomViewState> {
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<IRoomViewProps, IRoomViewState> {
}
return;
}
// TODO: implement multiple actions running. Quoting, then edit. Edit then quote.
if (action) {
return;
}
@ -773,7 +771,6 @@ class RoomView extends React.Component<IRoomViewProps, IRoomViewState> {
};
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<IRoomViewProps, IRoomViewState> {
onMessageLongPress = (message: TAnyMessageModel) => {
const { action } = this.state;
// TODO: implement multiple actions running. Quoting, then edit. Edit then quote.
if (action && action !== 'quote') {
return;
}