Skip to content

Commit 1dc20ba

Browse files
WIP: Fix utm_medium param (#1987)
1 parent 272d6e2 commit 1dc20ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

next.config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -295,13 +295,13 @@ const nextConfig: NextConfig = {
295295
{
296296
source: '/join/:referralId',
297297
destination:
298-
'/action/sign-up?utm_campaign=:referralId&utm_source=swc&utm_medium=:utm_medium',
298+
'/action/sign-up?utm_campaign=:referralId&utm_source=swc&utm_medium=:utmMedium',
299299
permanent: false,
300300
has: [
301301
{
302302
type: 'query',
303303
key: 'utm_medium',
304-
value: '(?<utm_medium>.+)',
304+
value: '(?<utmMedium>.+)',
305305
},
306306
],
307307
},

0 commit comments

Comments
 (0)