File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ import speakers from '../data/xt25/speakers.json'
7
7
import XT25Agenda from ' @components/XT25Agenda.astro'
8
8
9
9
const { contactSubject } = Astro .props
10
+ let subject = ' XT25 RFI'
11
+ if (Astro .url .pathname .includes (' xt25-gs' )) {
12
+ subject = ' XT25-GS RFI'
13
+ }
10
14
---
11
15
12
16
<Layout
@@ -129,10 +133,7 @@ const { contactSubject } = Astro.props
129
133
>
130
134
This Event is Invite-Only and Free for Attendees
131
135
</span >
132
- <ContactUsFormXT24
133
- client:only
134
- subject ={ contactSubject || ' XT25 RFI' }
135
- />
136
+ <ContactUsFormXT24 client:only subject ={ contactSubject || subject } />
136
137
</div >
137
138
</div >
138
139
</div >
Original file line number Diff line number Diff line change
1
+ ---
2
+ import XT25Page from ' @components/XT25Page.astro'
3
+ ---
4
+
5
+ <XT25Page />
You can’t perform that action at this time.
0 commit comments