diff --git a/src/app/(main)/events/page.tsx b/src/app/(main)/events/page.tsx
index ee512ad..741f19b 100644
--- a/src/app/(main)/events/page.tsx
+++ b/src/app/(main)/events/page.tsx
@@ -17,7 +17,10 @@ export default function Events() {
const events = eventsData?.data?.events || [];
return (
-
+
{/* Heading */}
My Events
diff --git a/src/components/custom-ui/labeled-input.tsx b/src/components/custom-ui/labeled-input.tsx
index 5eb1a2e..6db0691 100644
--- a/src/components/custom-ui/labeled-input.tsx
+++ b/src/components/custom-ui/labeled-input.tsx
@@ -17,7 +17,7 @@ export default function LabeledInput({
variantSize = 'default',
autocomplete,
error,
- "data-cy": dataCy,
+ 'data-cy': dataCy,
...rest
}: {
label: string;
@@ -31,7 +31,7 @@ export default function LabeledInput({
variantSize?: 'default' | 'big' | 'textarea';
autocomplete?: string;
error?: string;
- "data-cy"?: string;
+ 'data-cy'?: string;
} & React.InputHTMLAttributes) {
const [passwordVisible, setPasswordVisible] = React.useState(false);
const [inputValue, setInputValue] = React.useState(
diff --git a/src/components/forms/event-form.tsx b/src/components/forms/event-form.tsx
index 0913a11..26824df 100644
--- a/src/components/forms/event-form.tsx
+++ b/src/components/forms/event-form.tsx
@@ -216,7 +216,11 @@ const EventForm: React.FC = (props) => {
return (