From e949a1ef67c09229ec74c7236bd57569686a30b4 Mon Sep 17 00:00:00 2001 From: Dhvani Patel Date: Thu, 21 Mar 2024 19:15:25 +0000 Subject: [PATCH] fix: type for openAccess --- packages/world/ts/config/v2/input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/world/ts/config/v2/input.ts b/packages/world/ts/config/v2/input.ts index 5769a69c57..6c58dcc0ab 100644 --- a/packages/world/ts/config/v2/input.ts +++ b/packages/world/ts/config/v2/input.ts @@ -14,7 +14,7 @@ export type SystemInput = { */ registerFunctionSelectors?: boolean; /** If openAccess is true, any address can call the system */ - openAccess?: true; + openAccess?: boolean; /** An array of addresses or system names that can access the system */ accessList?: string[]; };