Skip to content

Commit 2c16d53

Browse files
committed
fixed rabbit ai suggesion
1 parent 2f337c2 commit 2c16d53

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

src/content/docs/properties/work-with-properties/marketing-tags-properties.mdx

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,17 @@ This is the most common method. For example, if you want to pass in the UTM sour
7373
For example in the React SDK:
7474

7575
```jsx
76-
<RegisterLink
77-
className="btn btn-dark"
78-
utmSource: "my source",
79-
utmMedium: "some medium",
80-
utmCampaign: "awesome campaign",
81-
utmContent: "something else",
82-
utmTerm: "my terms",
83-
clickId: "1234",
84-
>Register</RegisterLink>
76+
<RegisterLink
77+
+ className="btn btn-dark"
78+
+ utmSource="my source"
79+
+ utmMedium="some medium"
80+
+ utmCampaign="awesome campaign"
81+
+ utmContent="something else"
82+
+ utmTerm="my terms"
83+
+ clickId="1234"
84+
+ >
85+
+ Register
86+
+ </RegisterLink>
8587
```
8688

8789
We automatically map the standard query parameters to the specific Kinde properties for you. For example `utm_source` URL param will be mapped to the `kp_usr_utm_source` Kinde parameter for a user and `kp_org_utm_source` for an organization. We map these automatically so that you do not need to make changes to the parameters in your code.

0 commit comments

Comments
 (0)