fix(hexclave): rename leftover @stackframe/stack-shared globals import to @hexclave/shared

The @hexclave/* source rename (#1482) missed createGlobal's import in the two
template providers, and PR 3 deleted the compat layer that used to alias
@stackframe/stack-shared. As a result `pnpm build:packages` fails to resolve
@stackframe/stack-shared/dist/utils/globals when Turbopack builds the dashboard.
Point both imports at @hexclave/shared (regenerated SDKs follow from the template).
This commit is contained in:
Bilal Godil 2026-06-01 11:35:19 -07:00
parent 609579abab
commit 1e4f4e477f
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
"use client";
import React from "react";
import { createGlobal } from "@stackframe/stack-shared/dist/utils/globals";
import { createGlobal } from "@hexclave/shared/dist/utils/globals";
import type { StackClientApp } from "../lib/stack-app/apps/interfaces/client-app";
type StackContextValue = {

View File

@ -1,7 +1,7 @@
"use client";
import React from "react";
import { createGlobal } from "@stackframe/stack-shared/dist/utils/globals";
import { createGlobal } from "@hexclave/shared/dist/utils/globals";
type TranslationContextValue = {
quetzalKeys: Map<string, string>,