IQuoter.QuoteExactInputSingleWithPoolParams({
                tokenIn: tokenIn,
                tokenOut: tokenOut,
                amountIn: amountIn, // Incorrect struct field usage
                fee: fee,
                pool: uniswapPool, 
                sqrtPriceLimitX96: 0 // No price constraint is applied
            })
    struct QuoteExactOutputSingleWithPoolParams {
        address tokenIn;
        address tokenOut;
        uint256 amount;
        uint24 fee;
        address pool;
        uint160 sqrtPriceLimitX96;
    }
(amountOut, , , ) = IQuoter(quoter).quoteExactInputSingleWithPool(
    IQuoter.QuoteExactInputSingleWithPoolParams({
        tokenIn: tokenIn,
        tokenOut: tokenOut,
        amount: amountIn, // Correct field usage
        fee: fee,
        pool: uniswapPool,
        sqrtPriceLimitX96: sqrtPriceLimitX96 // Example of allowing no limit
    })
);
