In NonfungiblePositionManager::mint(), _mint() is used instead of _safeMint(). 
NonfungiblePositionManager inherits openzeppelins ERC721.sol which provides both _mint() and _safeMint(). _mint()isdiscouragedin favor of_safeMint()which ensures that the recipient is either an EOA or implements IERC721Receiver. 
Current _mint() might cause user to lose their NFT position if the caller is a contract but has no means to manage ERC721 tokens.
(https://github.com/code-423n4/2024-02-thruster/blob/3896779349f90a44b46f2646094cb34fffd7f66e/thruster-protocol/thruster-clmm/contracts/NonfungiblePositionManager.sol#L153)
Use _safeMint() instead.
jooleseth (Thruster) acknowledged
0xleastwood (judge) commented:
For this audit, 2 reports were submitted by wardens detailing gas optimizations. The report highlighted below by oakcobalt received the top score from the judge.
The following warden also submitted a report: rvierdiiev.
