Skip to content

Commit

Permalink
fix: dnd: increase deadline for requesting drop statuses
Browse files Browse the repository at this point in the history
  • Loading branch information
mbnuqw committed Jan 23, 2025
1 parent 631f063 commit 90c37a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/drag-and-drop.actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ export async function onDragEnd(e: DragEvent): Promise<void> {
}
let consumed
try {
consumed = await Utils.deadline(1500, [], Promise.all(requestingDropStatus))
consumed = await Utils.deadline(5000, [], Promise.all(requestingDropStatus))
} catch (err) {
Logs.err('DnD.onDragEnd: Cannot get drop status from other windows', err)
return
Expand Down

0 comments on commit 90c37a2

Please sign in to comment.