chore: remove luckysheet integration
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user