From 3b7d0ddb362afc032d3d709ad6293b6327d697f3 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Sat, 3 Jan 2026 14:40:06 +0500 Subject: [PATCH] server(themes): remove _test key suffix --- servers/themes/src/counter/kv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/themes/src/counter/kv.ts b/servers/themes/src/counter/kv.ts index 467ef7fd1..378ecf37e 100644 --- a/servers/themes/src/counter/kv.ts +++ b/servers/themes/src/counter/kv.ts @@ -86,7 +86,7 @@ function write( key: string, data: T ) { - return client.kv.namespaces.values.update(config.namespaceId, key + "_test", { + return client.kv.namespaces.values.update(config.namespaceId, key, { account_id: config.cfAccountId, value: JSON.stringify(data) });