mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
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:
parent
609579abab
commit
1e4f4e477f
@ -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 = {
|
||||
|
||||
@ -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>,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user