From 299f36992594abb1edc29c20fb5e4066d6c77eab Mon Sep 17 00:00:00 2001 From: Devin Zuczek Date: Thu, 27 Aug 2026 17:18:42 -0400 Subject: [PATCH] [accounts] turn off IAP --- apps/accounts/src/accounts.app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }) } )