Removed breaking change + bumped version

This commit is contained in:
EJS00102
2024-10-15 15:49:58 +02:00
parent 6d367fd2cf
commit 17558909c1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "plunk", "name": "plunk",
"version": "1.0.7", "version": "1.0.8",
"private": true, "private": true,
"license": "agpl-3.0", "license": "agpl-3.0",
"workspaces": { "workspaces": {
+1 -1
View File
@@ -70,7 +70,7 @@ export class V1 {
contact = await prisma.contact.create({ contact = await prisma.contact.create({
data: { data: {
email, email,
subscribed: subscribed ?? false, subscribed: subscribed ?? true,
projectId: project.id, projectId: project.id,
}, },
}); });