Skip to content

Commit e90d924

Browse files
committed
Fix marketing default value
1 parent cfa416d commit e90d924

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

backend/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ yarn-error.log
2222
/.vscode
2323
.idea
2424
/app-back
25+
.vapor

frontend/src/components/routes/auth/Register/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const Register = () => {
2929
locale: getClientLocale(),
3030
invite_token: '',
3131
currency_code: getUserCurrency(),
32-
marketing_opt_in: true,
32+
marketing_opt_in: false,
3333
},
3434
validate: {
3535
password: hasLength({min: 8}, t`Password must be at least 8 characters`),

0 commit comments

Comments
 (0)