chore: remove luckysheet integration

This commit is contained in:
liaibo
2025-11-23 10:45:45 +08:00
parent 8bf5d06be1
commit 38a8dc93d1
126 changed files with 15824 additions and 94 deletions
+14
View File
@@ -0,0 +1,14 @@
export async function recordRecentPage(workspaceId: string | null, documentId: string) {
if (!workspaceId) {
return;
}
try {
await fetch("/api/search/recent", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ workspaceId, documentId }),
});
} catch (error) {
console.error("recordRecentPage failed", error);
}
}