({
source,
target,
from,
to,
}: {
source: string;
target: string;
from: string;
to: string;
})
| 394 | const pinnedThread = pinnedThreads[pinnedThreads.length - 1]; |
| 395 | |
| 396 | const handleDrop = ({ |
| 397 | source, |
| 398 | target, |
| 399 | from, |
| 400 | to, |
| 401 | }: { |
| 402 | source: string; |
| 403 | target: string; |
| 404 | from: string; |
| 405 | to: string; |
| 406 | }) => { |
| 407 | onDrop({ source, target, from, to }); |
| 408 | handleLeftScroll(); |
| 409 | }; |
| 410 | |
| 411 | async function uploadFiles(files: File[]) { |
| 412 | setProgress(0); |
nothing calls this directly
no test coverage detected