diff --git a/components/Tickets/ticketCards.js b/components/Tickets/ticketCards.js
index 21f3cb8c..451d2dbd 100644
--- a/components/Tickets/ticketCards.js
+++ b/components/Tickets/ticketCards.js
@@ -5,7 +5,7 @@ function TicketCards({ className, city }) {
// Determine card style based on event status
const isEndedOrUpcoming = city.ended || !city.ticket;
const cardOpacity = isEndedOrUpcoming ? 'opacity-40' : 'opacity-100';
- const buttonText = city.isFree ? 'Get Your Ticket' : 'Buy Now';
+ const buttonText = city.isFree ? 'Get Your Free Ticket' : 'Buy Now';
return (
diff --git a/config/speakers.json b/config/speakers.json
index 31d21e20..a57a7006 100644
--- a/config/speakers.json
+++ b/config/speakers.json
@@ -292,7 +292,7 @@
{
"time": "5:10 PM CEST - 5:35 PM CEST",
"session": "From Nightmares to Sweet Dreams: Conquering AsyncAPI Testing!",
- "speaker": 6,
+ "speaker": [6,3],
"type": "Technical Speaker"
}
]
diff --git a/package-lock.json b/package-lock.json
index 479d6b50..ce81cfb1 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -2237,8 +2237,9 @@
}
},
"node_modules/cross-spawn": {
- "version": "7.0.3",
- "license": "MIT",
+ "version": "7.0.5",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz",
+ "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==",
"dependencies": {
"path-key": "^3.1.0",
"shebang-command": "^2.0.0",
diff --git a/pages/venue/[id].js b/pages/venue/[id].js
index edd04e59..ef15092d 100644
--- a/pages/venue/[id].js
+++ b/pages/venue/[id].js
@@ -63,7 +63,7 @@ function Venue({ city }) {
{city.ended ? (city.playlist &&
):