diff --git a/apps/accounts/src/accounts.app.ts b/apps/accounts/src/accounts.app.ts index 78ee6f9..59b4d3a 100644 --- a/apps/accounts/src/accounts.app.ts +++ b/apps/accounts/src/accounts.app.ts @@ -403,7 +403,7 @@ const app = new Hono() async (c) => { const id = await authedId(c) if (id === null) return unauthorized(c) - return c.json({ accountId: id, disallowInAppPurchases: false }) + return c.json({ accountId: id, disallowInAppPurchases: true }) } )