From e53a4ffbe0264b06971090fcaf0d8b2201478e29 Mon Sep 17 00:00:00 2001 From: skirtle <65301168+skirtles-code@users.noreply.github.com> Date: Fri, 30 May 2025 07:43:23 +0100 Subject: [PATCH] chore(hydration): reuse existing variable (#13412) --- packages/runtime-core/src/hydration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-core/src/hydration.ts b/packages/runtime-core/src/hydration.ts index 6ffdbc68de..12813b598b 100644 --- a/packages/runtime-core/src/hydration.ts +++ b/packages/runtime-core/src/hydration.ts @@ -997,6 +997,6 @@ function isMismatchAllowed( if (allowedType === MismatchTypes.TEXT && list.includes('children')) { return true } - return allowedAttr.split(',').includes(MismatchTypeString[allowedType]) + return list.includes(MismatchTypeString[allowedType]) } } -- 2.47.3