This repository was archived by the owner on Jun 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ const createBooking = async (
22
22
endTime : string ,
23
23
optionalAttendees ?: string [ ] ,
24
24
referenceCode ?: string ,
25
- address ?: string ,
25
+ location ?: string ,
26
26
message ?: string
27
27
) : Promise < Record < string , unknown > > => {
28
28
const body = {
@@ -31,7 +31,7 @@ const createBooking = async (
31
31
endTime : moment ( endTime ) . format ( ) ,
32
32
optionalAttendees,
33
33
referenceCode,
34
- location : address ,
34
+ location,
35
35
body : `Du har fått en bokning ifrån Mitt Helsingborg. Klicka på Acceptera för att bekräfta bokningen.\n\n${ message } ` ,
36
36
subject : "Mitt Helsingborg bokning" ,
37
37
} ;
@@ -70,7 +70,7 @@ const updateBooking = async (
70
70
endTime : string ,
71
71
optionalAttendees ?: string [ ] ,
72
72
referenceCode ?: string ,
73
- address ?: string ,
73
+ location ?: string ,
74
74
message ?: string
75
75
) : Promise < Record < string , unknown > > => {
76
76
const body = {
@@ -79,7 +79,7 @@ const updateBooking = async (
79
79
endTime : moment ( endTime ) . format ( ) ,
80
80
optionalAttendees,
81
81
referenceCode,
82
- location : address ,
82
+ location,
83
83
body : `Du har fått en bokning ifrån Mitt Helsingborg. Klicka på Acceptera för att bekräfta bokningen.\n\n${ message } ` ,
84
84
subject : "Mitt Helsingborg bokning" ,
85
85
} ;
You can’t perform that action at this time.
0 commit comments