Skip to content

Commit 9619432

Browse files
author
Luca Forstner
authored
tests(e2e): Undo intentional error (#7643)
1 parent e7a0b1c commit 9619432

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/nextjs/rollup.npm.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default [
4646
},
4747
external: [
4848
'@sentry/nextjs',
49-
'next/dist/client/components/request-async-storagee',
49+
'next/dist/client/components/request-async-storage',
5050
'__SENTRY_WRAPPING_TARGET_FILE__',
5151
'__SENTRY_NEXTJS_REQUEST_ASYNC_STORAGE_SHIM__',
5252
],

packages/nextjs/src/config/loaders/wrappingLoader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const SENTRY_WRAPPER_MODULE_NAME = 'sentry-wrapper-module';
1414
const WRAPPING_TARGET_MODULE_NAME = '__SENTRY_WRAPPING_TARGET_FILE__.cjs';
1515

1616
// Non-public API. Can be found here: https://github.com/vercel/next.js/blob/46151dd68b417e7850146d00354f89930d10b43b/packages/next/src/client/components/request-async-storage.ts
17-
const NEXTJS_REQUEST_ASYNC_STORAGE_MODULE_PATH = 'next/dist/client/components/request-async-storagee';
17+
const NEXTJS_REQUEST_ASYNC_STORAGE_MODULE_PATH = 'next/dist/client/components/request-async-storage';
1818

1919
const apiWrapperTemplatePath = path.resolve(__dirname, '..', 'templates', 'apiWrapperTemplate.js');
2020
const apiWrapperTemplateCode = fs.readFileSync(apiWrapperTemplatePath, { encoding: 'utf8' });

0 commit comments

Comments
 (0)