From 16d14c7c224fd2e04fbc910edf1175460d6575d3 Mon Sep 17 00:00:00 2001 From: Mateusz Bocian Date: Thu, 17 Apr 2025 08:09:10 -0400 Subject: [PATCH] chore: fix import path --- src/run/handlers/request-context.cts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run/handlers/request-context.cts b/src/run/handlers/request-context.cts index 9aabb7ca0a..476b034309 100644 --- a/src/run/handlers/request-context.cts +++ b/src/run/handlers/request-context.cts @@ -1,7 +1,7 @@ import { AsyncLocalStorage } from 'node:async_hooks' -import type { Context } from '@netlify/functions' import { LogLevel, systemLogger } from '@netlify/functions/internal' +import type { Context } from '@netlify/serverless-functions-api' import type { NetlifyCachedRouteValue } from '../../shared/cache-types.cjs'