removed redundant scenarioId in GET signature

This commit is contained in:
Khalim Conn-Kowlessar 2026-02-25 09:01:28 +00:00
parent bf02eb18d9
commit c5588e67e2

View file

@ -13,7 +13,7 @@ type MeasureAggregateRow = {
export async function GET(
request: NextRequest,
props: { params: Promise<{ portfolioId: string; scenarioId: string }> },
props: { params: Promise<{ portfolioId: string }> },
) {
const { portfolioId } = await props.params;