diff --git a/src/app/(main)/events/page.tsx b/src/app/(main)/events/page.tsx
index 741f19b..ee512ad 100644
--- a/src/app/(main)/events/page.tsx
+++ b/src/app/(main)/events/page.tsx
@@ -17,10 +17,7 @@ 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 6db0691..5eb1a2e 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 26824df..0913a11 100644
--- a/src/components/forms/event-form.tsx
+++ b/src/components/forms/event-form.tsx
@@ -216,11 +216,7 @@ const EventForm: React.FC = (props) => {
return (