We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 225ee01 commit cb3f0c6Copy full SHA for cb3f0c6
packages/react-reconciler/src/ReactFiberViewTransitionComponent.js
@@ -43,14 +43,14 @@ export function assignViewTransitionAutoName(
43
if (getIsHydrating()) {
44
const treeId = getTreeId();
45
// Use a captial R prefix for server-generated ids.
46
- name = '\u00AB' + identifierPrefix + 'R' + treeId + '\u00BB';
+ name = '\u00AB' + identifierPrefix + 'T' + treeId + '\u00BB';
47
} else {
48
// Use a lowercase r prefix for client-generated ids.
49
const globalClientId = globalClientIdCounter++;
50
name =
51
'\u00AB' +
52
identifierPrefix +
53
- 'r' +
+ 't' +
54
globalClientId.toString(32) +
55
'\u00BB';
56
}
0 commit comments