Fix link formatting (#13210)

closes https://github.com/twentyhq/twenty/issues/13207

---------

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
Paul Rastoin
2025-07-15 12:27:00 +02:00
committed by GitHub
parent eed502778a
commit d916ec0af9
12 changed files with 87 additions and 60 deletions
@@ -105,11 +105,7 @@ describe('removeUndefinedFields', () => {
},
expected: {
names: ['John', 'Jane', null],
tags: [
{ id: 1, label: 'active' },
{ label: 'pending' },
{ id: 3 },
],
tags: [{ id: 1, label: 'active' }, { label: 'pending' }, { id: 3 }],
},
},
{
@@ -131,4 +127,4 @@ describe('removeUndefinedFields', () => {
expect(removeUndefinedFields(input)).toEqual(expected);
});
});
});
});