(entry: FileEntry)
| 350 | }; |
| 351 | |
| 352 | const handleEntryDoubleClick = (entry: FileEntry) => { |
| 353 | // Double click navigates into directories |
| 354 | if (entry.is_directory) { |
| 355 | navigateToDirectory(entry.path); |
| 356 | } |
| 357 | }; |
| 358 | |
| 359 | return ( |
| 360 | <motion.div |
no test coverage detected