Skip to content

Commit

Permalink
Merge branch 'main' into 5095-move-onboardingstatus-computation-from-…
Browse files Browse the repository at this point in the history
…frontend-to-backend
  • Loading branch information
martmull committed Jun 27, 2024
2 parents 05713ac + 845fcb6 commit 8f9c20f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export const RecordTableCellContainer = ({
};

const handleContainerMouseMove = () => {
setIsFocused(true);
if (!hasSoftFocus) {
onCellMouseEnter({
cellPosition,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const getNextOnboardingStatus = (
}
if (
currentUser?.onboardingStatus === OnboardingStatus.SyncEmail &&
workspaceMembers?.length <= 1
workspaceMembers.length === 1
) {
return OnboardingStatus.InviteTeam;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class MessagingErrorHandlingService {
private async handleFailedPrecondition(
error: GmailError,
syncStep: SyncStep,
messageChannel: ObjectRecord<MessageChannelWorkspaceEntity>,
messageChannel: MessageChannelWorkspaceEntity,
workspaceId: string,
): Promise<void> {
await this.messagingTelemetryService.track({
Expand Down Expand Up @@ -243,7 +243,7 @@ export class MessagingErrorHandlingService {

private async handleThrottle(
syncStep: SyncStep,
messageChannel: ObjectRecord<MessageChannelWorkspaceEntity>,
messageChannel: MessageChannelWorkspaceEntity,
workspaceId: string,
): Promise<void> {
if (
Expand Down Expand Up @@ -307,7 +307,7 @@ export class MessagingErrorHandlingService {
private async handleUnknownError(
error: GmailError,
syncStep: SyncStep,
messageChannel: ObjectRecord<MessageChannelWorkspaceEntity>,
messageChannel: MessageChannelWorkspaceEntity,
workspaceId: string,
): Promise<void> {
await this.messagingTelemetryService.track({
Expand Down

0 comments on commit 8f9c20f

Please sign in to comment.