Skip to content

Commit

Permalink
Now I get it
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Silbermann committed Jan 30, 2024
1 parent 8c99435 commit 951d18e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js
Original file line number Diff line number Diff line change
Expand Up @@ -3561,9 +3561,6 @@ export function pushStartInstance(
case 'span':
case 'svg':
case 'path':
case 'g':
case 'p':
case 'li':
// Fast track very common tags
break;
case 'a':
Expand All @@ -3572,6 +3569,11 @@ export function pushStartInstance(
} else {
break;
}
case 'g':
case 'p':
case 'li':
// Fast track very common tags
break;
// Special tags
case 'select':
return pushStartSelect(target, props);
Expand Down

0 comments on commit 951d18e

Please sign in to comment.