Fix missing imports in identity and conflict resolution services

This commit is contained in:
gpt-engineer-app[bot]
2025-10-17 14:42:26 +00:00
parent 4ab59e2ec2
commit 5466c60b84
3 changed files with 3 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
import { supabase } from '@/integrations/supabase/client';
import { getErrorMessage } from '@/lib/errorHandler'; import { getErrorMessage } from '@/lib/errorHandler';
import { updateSubmissionItem, type SubmissionItemWithDeps, type DependencyConflict } from './submissionItemsService'; import { updateSubmissionItem, type SubmissionItemWithDeps, type DependencyConflict } from './submissionItemsService';

View File

@@ -12,6 +12,7 @@ import type {
IdentityOperationResult IdentityOperationResult
} from '@/types/identity'; } from '@/types/identity';
import { logger } from './logger'; import { logger } from './logger';
import { getErrorMessage } from './errorHandler';
/** /**
* Get all identities for the current user * Get all identities for the current user

View File

@@ -1,4 +1,5 @@
import { supabase } from '@/integrations/supabase/client'; import { supabase } from '@/integrations/supabase/client';
import { getErrorMessage } from './errorHandler';
export interface SubmissionItemWithDeps { export interface SubmissionItemWithDeps {
id: string; id: string;