diff options
| author | Dhravya Shah <[email protected]> | 2024-09-18 15:48:12 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-09-18 15:48:12 -0700 |
| commit | d7a8c4c79b030251b4c984c282e32af52b7dde21 (patch) | |
| tree | 5543a8c0aaa8a4fa531aa14c4b138b71cc89fe73 | |
| parent | Merge pull request #294 from supermemoryai/extension/drag-and-dismiss (diff) | |
| download | supermemory-d7a8c4c79b030251b4c984c282e32af52b7dde21.tar.xz supermemory-d7a8c4c79b030251b4c984c282e32af52b7dde21.zip | |
fix: extension on top
| -rw-r--r-- | apps/cf-ai-backend/src/queueConsumer/index.ts | 3 | ||||
| -rw-r--r-- | apps/extension/content/ContentApp.tsx | 2 | ||||
| -rw-r--r-- | apps/extension/manifest.json | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/apps/cf-ai-backend/src/queueConsumer/index.ts b/apps/cf-ai-backend/src/queueConsumer/index.ts index fec5260f..89992752 100644 --- a/apps/cf-ai-backend/src/queueConsumer/index.ts +++ b/apps/cf-ai-backend/src/queueConsumer/index.ts @@ -368,9 +368,8 @@ export async function queue( .update(jobs) .set({ status: "Processed" }) .where(eq(jobs.id, jobId)); - - return; } + console.log(`Finished processing batch of ${batch.messages.length} length`); } /* diff --git a/apps/extension/content/ContentApp.tsx b/apps/extension/content/ContentApp.tsx index 89abf600..1455ef9c 100644 --- a/apps/extension/content/ContentApp.tsx +++ b/apps/extension/content/ContentApp.tsx @@ -350,7 +350,7 @@ export default function ContentApp({ }; return ( - <div className="flex justify-end items-end h-full w-full"> + <div className="flex justify-end items-end h-full w-full z-[999999]"> <Toaster /> <Popover diff --git a/apps/extension/manifest.json b/apps/extension/manifest.json index 1b16aea7..ff3db00d 100644 --- a/apps/extension/manifest.json +++ b/apps/extension/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "$schema": "https://json.schemastore.org/chrome-manifest", - "version": "2.63.4", + "version": "2.63.71", "name": "supermemory", "description": "An extension for https://supermemory.ai - an AI hub for all your bookmarks.", "background": { |