diff options
Diffstat (limited to 'apps/extension/content')
| -rw-r--r-- | apps/extension/content/ContentApp.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/extension/content/ContentApp.tsx b/apps/extension/content/ContentApp.tsx index a510a77c..fb28925d 100644 --- a/apps/extension/content/ContentApp.tsx +++ b/apps/extension/content/ContentApp.tsx @@ -229,6 +229,18 @@ export default function ContentApp({ if (rep.status === 200) { toast({ title: "Saved to supermemory.ai", + action: ( + <button + onClick={() => { + window.open( + `https://supermemory.ai`, + "_blank", + ); + }} + > + View + </button> + ), }); } else { toast({ |