{clickableComponent && (
{clickableComponent}
diff --git a/packages/twenty-front/src/testing/mock-data/accounts.ts b/packages/twenty-front/src/testing/mock-data/accounts.ts
new file mode 100644
index 000000000..908710efc
--- /dev/null
+++ b/packages/twenty-front/src/testing/mock-data/accounts.ts
@@ -0,0 +1,6 @@
+import { Account } from '@/accounts/types/Account';
+
+export const mockedAccounts: Account[] = [
+ { email: 'thomas@twenty.com', uuid: '0794b782-f52e-48c3-977e-b0f57f90de24' },
+ { email: 'thomas@twenty.dev', uuid: 'dc66a7ec-56b2-425b-a8e8-26ff0396c3aa' },
+];