server(themes): remove _test key suffix

This commit is contained in:
Abdullah Atta
2026-01-03 14:40:06 +05:00
parent 482fea91f3
commit 3b7d0ddb36

View File

@@ -86,7 +86,7 @@ function write<T>(
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)
});