formatting

This commit is contained in:
Josh Hawkins 2026-03-23 08:34:44 -05:00
parent 3ef011986c
commit b586d50ca2

View File

@ -28,7 +28,8 @@ function ignoreDynamicNamespaceKeys(): Plugin {
for (const key of keys.keys()) {
// Each map key is "ns:actualKey" format
const separatorIndex = key.indexOf(":");
const actualKey = separatorIndex >= 0 ? key.slice(separatorIndex + 1) : key;
const actualKey =
separatorIndex >= 0 ? key.slice(separatorIndex + 1) : key;
if (falsePositiveKeys.has(actualKey)) {
keys.delete(key);
}