Skip to content

Commit f63c9b4

Browse files
authored
fix(cursor-integration): fix broken button link (#103304)
turns out the prop is `href` not `to`
1 parent 69fb355 commit f63c9b4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

static/app/components/events/autofix/cursorIntegrationCta.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,11 @@ export function CursorIntegrationCta({project}: CursorIntegrationCtaProps) {
130130
)}
131131
</Text>
132132
<div>
133-
<LinkButton to="/settings/integrations/cursor/" priority="default" size="sm">
133+
<LinkButton
134+
href="/settings/integrations/cursor/"
135+
priority="default"
136+
size="sm"
137+
>
134138
{t('Install Cursor Integration')}
135139
</LinkButton>
136140
</div>

0 commit comments

Comments
 (0)