mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 13:31:12 -05:00
Fix missing imports in identity and conflict resolution services
This commit is contained in:
@@ -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';
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user