704 hasHtml: false,
705
706▶ // @TODO add bootstrap script to implicit preloads
707
708 // persistent
· · ·
1222 // Because this is a side-effect in render, we should ideally call pushViewTransitionAttributes
1223 // after we've suspended (like forms do), so that we don't increment each attempt.
1224▶ // TODO: Make this deterministic.
1225 viewTransition.nameIdx++;
1226 }
· · ·
1296 styleValue === ''
1297 ) {
1298▶ // TODO: We used to set empty string as a style with an empty value. Does that ever make sense?
1299 continue;
1300 }
· · ·
1381
1382function makeFormFieldPrefix(resumableState: ResumableState): string {
1383▶ // TODO: Make this deterministic.
1384 const id = resumableState.nextFormID++;
1385 return resumableState.idPrefix + id;
· · ·
1459 // work there.
1460 if (__DEV__) {
1461▶ // TODO: Should this be some kind of recoverable error?
1462 console.error(
1463 'Failed to serialize an action for progressive enhancement:\n%s',
+ 18 more matches in this file