Skip to content

Commit

Permalink
circle fix -1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusats committed Jul 31, 2023
1 parent c9e1a14 commit 76d5292
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,7 @@ const BorrowersList = (props: any) => {
} = props;
const auth = useSelector(selectCurrentUser);

// @ts-ignore
const { managerDetails } = useLoanManager();

const limitReach =
Expand Down
1 change: 1 addition & 0 deletions src/views/MicrocreditManager/ApproveRejectTab/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ const DecisionCard: React.FC<{ selected: object; mutate: any }> = (props) => {
(obj: { address: string }) => obj.address
);

// @ts-ignore
const { managerDetails } = useLoanManager();

const limitReach =
Expand Down
2 changes: 2 additions & 0 deletions src/views/MicrocreditManager/MicrocreditManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ const MicrocreditManager: React.FC<{ isLoading?: boolean }> = (props) => {
}
}, []);


// @ts-ignore
const { managerDetails } = useLoanManager();

const limitReach =
Expand Down

0 comments on commit 76d5292

Please sign in to comment.