mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
fix(web): prevent upgrade click event as plan id (#1086)
This commit is contained in:
parent
464a2b16b1
commit
23c43bd27d
1 changed files with 2 additions and 2 deletions
|
|
@ -2850,7 +2850,7 @@ export function IntegrationsView({
|
|||
}
|
||||
if (needsProUpgrade) {
|
||||
return (
|
||||
<PillButton onClick={handleUpgrade}>
|
||||
<PillButton onClick={() => handleUpgrade()}>
|
||||
<Zap className="size-3.5 text-[#4BA0FA]" /> Upgrade
|
||||
</PillButton>
|
||||
)
|
||||
|
|
@ -3465,7 +3465,7 @@ export function IntegrationsView({
|
|||
</div>
|
||||
<div className="flex shrink-0 items-center justify-between gap-2">
|
||||
{connectedDialogNeedsPro ? (
|
||||
<PillButton onClick={handleUpgrade}>
|
||||
<PillButton onClick={() => handleUpgrade()}>
|
||||
<Zap className="size-3.5 text-[#4BA0FA]" /> Upgrade to connect
|
||||
more
|
||||
</PillButton>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue