From 024ca14336df3baf7cd0cacfa4da4aead96f8f16 Mon Sep 17 00:00:00 2001 From: Konstantin Wohlwend Date: Fri, 30 Aug 2024 14:44:15 -0700 Subject: [PATCH] Fix polyfills import --- apps/dashboard/src/app/api/[...any]/route.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/src/app/api/[...any]/route.tsx b/apps/dashboard/src/app/api/[...any]/route.tsx index b3ab72eec..9bed365e6 100644 --- a/apps/dashboard/src/app/api/[...any]/route.tsx +++ b/apps/dashboard/src/app/api/[...any]/route.tsx @@ -1,6 +1,6 @@ import { StackAssertionError, captureError } from "@stackframe/stack-shared/dist/utils/errors"; import { NextRequest, NextResponse } from "next/server"; -import '../polyfills'; +import '../../../polyfills'; const handler = async (req: NextRequest) => { const msg = "Stack Auth's dashboard API is no longer available. Please upgrade the version of your Stack Auth client library, or join our Discord server for assistance: https://discord.stack-auth.com";