From 50860459a5b9dd000a32196e0a0030202e8bcd34 Mon Sep 17 00:00:00 2001 From: Bilal Godil Date: Tue, 26 May 2026 18:57:13 -0700 Subject: [PATCH] fix(dashboard): update hexclave-rebrand-modal import to @hexclave/next The rebrand modal was added on the rebrand-modal branch (PR #1493) and still imported useUser from the pre-rename package name @stackframe/stack. After this branch's source rename to @hexclave/*, that package no longer exists in the workspace, causing the dashboard Turbopack build to fail with 'Module not found: Can't resolve @stackframe/stack' and aborting the E2E job. --- apps/dashboard/src/components/hexclave-rebrand-modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/src/components/hexclave-rebrand-modal.tsx b/apps/dashboard/src/components/hexclave-rebrand-modal.tsx index b96ff01bc..e1074e567 100644 --- a/apps/dashboard/src/components/hexclave-rebrand-modal.tsx +++ b/apps/dashboard/src/components/hexclave-rebrand-modal.tsx @@ -10,7 +10,7 @@ import { } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; import { getPublicEnvVar } from "@/lib/env"; -import { useUser } from "@stackframe/stack"; +import { useUser } from "@hexclave/next"; import Image from "next/image"; import { useEffect, useState } from "react";