diff --git a/src/app/actions.ts b/src/app/actions.ts index 31eaf24..bb9452d 100644 --- a/src/app/actions.ts +++ b/src/app/actions.ts @@ -46,7 +46,7 @@ export async function submit (guest: string, formData: FormData) fieldValue = 'true' } - const fieldData = notionFields[type].replace('{{value}}', fieldValue) + const fieldData = notionFields[type].replace('{{value}}', fieldValue.replace('"', '\\"')) updatedData[id] = { ...updatedData[id], diff --git a/src/components/parts/details/styles.module.css b/src/components/parts/details/styles.module.css index fd31155..f329397 100644 --- a/src/components/parts/details/styles.module.css +++ b/src/components/parts/details/styles.module.css @@ -196,6 +196,10 @@ border-right: 1px solid $green; } + &:nth-of-type(5) { + margin-bottom: 4em; + } + &:last-of-type { padding-top: 4em; }