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.
This commit is contained in:
Bilal Godil 2026-05-26 18:57:13 -07:00
parent 28efd8b133
commit 50860459a5

View File

@ -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";