You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check if updating to the latest Preact version resolves the issue
Thank you for addressing #4274, but the fix did not resolve the issue in my case. The code snippet I provided had been simplified to use only <div>, but I am actually using different tags. When I change <div></div> before {cond && ... } to <span></span>, the bug still persists.
To Reproduce, copy-paste the above code to https://preactjs.com/repl to see that the text "B" is continuously added. (The site indicates "v10.19.3," but I'm assuming the REPL is using v10.19.5 because the previous bug has been fixed.)
Expected behavior
Only a single instance of <B /> should be shown.
The text was updated successfully, but these errors were encountered:
FWIW, the banner on the site is purely for showing the latest release (and we have a little infra bug so it's showing the fallback, hardcoded version at the moment) -- it has no connection to the version available in the REPL.
Thank you for addressing #4274, but the fix did not resolve the issue in my case. The code snippet I provided had been simplified to use only
<div>
, but I am actually using different tags. When I change<div></div>
before{cond && ... }
to<span></span>
, the bug still persists.To Reproduce, copy-paste the above code to https://preactjs.com/repl to see that the text "B" is continuously added. (The site indicates "v10.19.3," but I'm assuming the REPL is using v10.19.5 because the previous bug has been fixed.)
Expected behavior
Only a single instance of
<B />
should be shown.The text was updated successfully, but these errors were encountered: