Update listener passing (#4751)

This commit is contained in:
Raunak Bhagat
2025-05-21 18:31:20 -07:00
committed by GitHub
parent 9dbe12cea8
commit 3b64793d4b

View File

@ -92,9 +92,8 @@ const SortableFolder: React.FC<SortableFolderProps> = (props) => {
className="pr-3 ml-4 overflow-visible flex items-start"
style={style}
{...attributes}
{...listeners}
>
<FolderDropdown ref={ref} {...props} />
<FolderDropdown {...listeners} ref={ref} {...props} />
</div>
);
};