Просмотр исходного кода

fix(onboardin): Node Profilling import (#55691)

Co-authored-by: getsantry[bot] <66042841+getsantry[bot]@users.noreply.github.com>
Daniel Griesser 1 год назад
Родитель
Сommit
060e84920f
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      static/app/utils/gettingStartedDocs/node.ts

+ 1 - 1
static/app/utils/gettingStartedDocs/node.ts

@@ -61,7 +61,7 @@ export function getDefaultNodeImports({
     `import * as Sentry from "@sentry/node";`,
   ];
   if (productSelection.profiling) {
-    imports.push(`import { ProfilingIntegration } from "@sentry/profiling";`);
+    imports.push(`import { ProfilingIntegration } from "@sentry/profiling-node";`);
   }
   return imports;
 }