[BUGFIX] Reply button opens google (#10269)

fixes https://github.com/twentyhq/twenty/issues/10242
This commit is contained in:
Guillim
2025-02-19 09:58:50 +01:00
committed by GitHub
parent 248ec4cd6f
commit dca4fc1423
3 changed files with 43 additions and 5 deletions

View File

@ -1,3 +1,4 @@
import { ConnectedAccountProvider } from 'twenty-shared';
import { MessageChannelVisibility } from '~/generated/graphql';
export enum MessageChannelContactAutoCreationPolicy {
@ -36,5 +37,9 @@ export type MessageChannel = {
syncCursor: string;
syncStageStartedAt: Date;
throttleFailureCount: number;
connectedAccount?: {
id: string;
provider: ConnectedAccountProvider;
};
__typename: 'MessageChannel';
};