Fix Python string-form component name references

The rename script only matched ~prefixed names in .sx files.
Python render calls use bare strings like render_to_html("name")
which also need updating: 37 replacements across 8 files.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 22:13:47 +00:00
parent b0920a1121
commit 6186cd1c53
8 changed files with 37 additions and 37 deletions

View File

@@ -545,7 +545,7 @@ async def execute_page_streaming(
else:
suspense_content_sx = f'(~shared:pages/suspense :id "stream-content" :fallback {fallback_sx})'
initial_page_html = await _helpers_render_to_html("app-body",
initial_page_html = await _helpers_render_to_html("shared:layout/app-body",
header_rows=SxExpr(suspense_header_sx),
content=SxExpr(suspense_content_sx),
)