chore: checkpoint admin editor and perf work

This commit is contained in:
2026-03-31 00:12:02 +08:00
parent 92a85eef20
commit 99b308e800
45 changed files with 7265 additions and 833 deletions

View File

@@ -868,7 +868,9 @@ const currentNavLabel =
renderSearchResults(query, [], 'loading');
try {
const response = await fetch(`${searchApiBase}/search?q=${encodeURIComponent(query)}&limit=6`);
const response = await fetch(
`${searchApiBase}/search?q=${encodeURIComponent(query)}&limit=6&preview=true`
);
if (!response.ok) {
throw new Error(`Search failed: ${response.status}`);
}