Skip to content

Commit

Permalink
Fix broken deep imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pawellula committed Jan 6, 2023
1 parent 62d38ed commit c325e71
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/react/src/transactions/adapters/useFollowController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ import {
PendingSigningRequestError,
UserRejectedError,
WalletConnectionError,
} from '@lens-protocol/domain/dist/esm/entities';
import {
InsufficientAllowanceError,
InsufficientFundsError,
} from '@lens-protocol/domain/dist/esm/use-cases/wallets';
} from '@lens-protocol/domain/entities';
import {
FollowProfiles,
FollowRequest,
Expand All @@ -16,6 +12,10 @@ import {
ProtocolCallUseCase,
SignlessProtocolCallUseCase,
} from '@lens-protocol/domain/use-cases/transactions';
import {
InsufficientAllowanceError,
InsufficientFundsError,
} from '@lens-protocol/domain/use-cases/wallets';

import { useSharedDependencies } from '../../shared';
import { FollowProfilesCallGateway } from './FollowProfilesCallGateway';
Expand Down

0 comments on commit c325e71

Please sign in to comment.