https://github.com/code-423n4/2023-11-panoptic/blob/aa86461c9d6e60ef75ed5a1fe36a748b952c8666/contracts/SemiFungiblePositionManager.sol#L1223
Users deposit tokens by opening short positions and withdraw tokens by opening long positions or closing short positions (closing a short position is also considered as long in the codebase).
If a position is long, the liquidity in the Uniswap is burned first and then collected.
In the current implementation, the collected tokens are only transferred to the msg.sender and the user has no way to provide a different recipient.  
https://github.com/code-423n4/2023-11-panoptic/blob/aa86461c9d6e60ef75ed5a1fe36a748b952c8666/contracts/SemiFungiblePositionManager.sol#L1222C2-L1228C15
This SemiFungiblePositionManager contract is the ERC1155 version of Uniswaps NonfungiblePositionManager. Users can provide different recipient addresses in both NonfungiblePositionManager and UniswapV3Pool contracts in the Uniswap protocol.
Users should be able to provide recipients in case of being blocked by some token contracts (e.g. USDC or USDT).
If Alice minted a position directly in Uniswap instead of doing this through Panoptic, she couldve provided a different address, closed the position and gotten her tokens back.
Allow users to provide recipient addresses to collect fees and burnt liquidity instead of transferring only to the msg.sender.
