diff --git a/TODO b/TODO
index 8c1f8dc..56f6f90 100644
--- a/TODO
+++ b/TODO
@@ -1,10 +1,6 @@
TESTS
// TODO tests for tournament page:
- map and table mounts in tournament page <- get data to send to map/table
-//TODO data fetching tests
-//TODO redo layer groups tests
-//TODO write tests for contact form
-//TODO dead link tests take too long, split them into separate tests per page
-----------------------------------------------------------------
BUGS
@@ -21,20 +17,18 @@ DESIGN CHANGES
//TODO test entire site for english to french translations
//TODO success and error messages into french - mailer
//TODO font size on mobile screen
-//TODO mobile navbar is creeping into the page by a few pixels when hidden - move it to the right a bit. It is easier to see in light mode
+//TODO mobile navbar is creeping into the page by a few pixels when hidden - move it to the right a bit. It is easier to see in light mode. I cant see this on Linux
//TODO logo for navbar and favicon
//TODO mobile map needs improving
----------------------------------------------------------------
LOGIC
-//TODO SRP for web and API data fetching
//TODO error handling
//TODO consider offering GraphQL support
MISC
----------------------------------------------------------------
//TODO write logger (fullstack open examples)
-//TODO SEO - next headers etc
//TODO multi-language i18n support - https://nextjs.org/docs/app/building-your-application/routing/internationalization
//TODO move smaller ui components into a new folder, and make them reusable - such as using generic prop names
//TODO readme
diff --git a/app/api/v1/tournaments/france/route.ts b/app/api/v1/tournaments/france/route.ts
index afcd444..0ccd2c1 100644
--- a/app/api/v1/tournaments/france/route.ts
+++ b/app/api/v1/tournaments/france/route.ts
@@ -14,7 +14,6 @@ export async function GET() {
try {
const client = await clientPromise;
const db = client.db("tournamentsFranceDB");
-
const results = await dateOrderingFrance(db);
const data = results.map(({ _id, ...rest }) => ({
id: _id,
diff --git a/app/tournois/page.tsx b/app/tournois/page.tsx
index 03c69d1..c6cc6e9 100644
--- a/app/tournois/page.tsx
+++ b/app/tournois/page.tsx
@@ -23,9 +23,7 @@ const getTournaments = async () => {
try {
const client = await clientPromise;
const db = client.db("tournamentsFranceDB");
-
const data = await dateOrderingFrance(db);
-
return JSON.stringify(data);
} catch (error) {
throw new Error("Error fetching tournament data");
diff --git a/components/ContactForm.tsx b/components/ContactForm.tsx
index d80148a..5902691 100644
--- a/components/ContactForm.tsx
+++ b/components/ContactForm.tsx
@@ -17,6 +17,7 @@ const ContactForm = () => {
className={`${
responseMessage.isSuccessful ? "text-green-600" : "text-red-600"
} italic`}
+ data-cy="info-message"
>
{responseMessage.message}