fix: Remove many to many relation option (#7360)

## Description

- This PR addresses the issue #7359
This commit is contained in:
Harshit Singh
2024-10-01 19:28:19 +05:30
committed by GitHub
parent c505a8edd2
commit 3a0c32a88d
2 changed files with 0 additions and 10 deletions

View File

@ -1,6 +1,5 @@
import {
IconComponent,
IllustrationIconManyToMany,
IllustrationIconOneToMany,
IllustrationIconOneToOne,
} from 'twenty-ui';
@ -35,11 +34,4 @@ export const RELATION_TYPES: Record<
imageSrc: OneToManySvg,
isImageFlipped: true,
},
// Not supported yet
[RelationDefinitionType.ManyToMany]: {
label: 'Belongs to many',
Icon: IllustrationIconManyToMany,
imageSrc: OneToManySvg,
isImageFlipped: true,
},
};