feat(release): stage GitWorkshop and next node updates

This commit is contained in:
archipelago
2026-09-09 18:15:21 -04:00
parent 973356df16
commit f5c0ba85cd
97 changed files with 5716 additions and 1327 deletions
@@ -41,7 +41,15 @@ vi.mock('../appSession/useAppIdentity', () => ({
}))
vi.mock('../appSession/useNostrBridge', () => ({
useNostrBridge: () => ({ handleNostrRequest: vi.fn() }),
useNostrBridge: () => ({
handleNostrRequest: vi.fn(),
showConsent: { value: false },
consentRequest: { value: null },
consentPhase: { value: 'review' },
consentError: { value: '' },
approveConsent: vi.fn(),
denyConsent: vi.fn(),
}),
}))
vi.stubGlobal('open', mockWindowOpen)