diff --git a/src/components/RepayInput/index.tsx b/src/components/RepayInput/index.tsx index 8d3c30d..201f60b 100644 --- a/src/components/RepayInput/index.tsx +++ b/src/components/RepayInput/index.tsx @@ -47,9 +47,8 @@ export const RepayInput = (props: { ); // const collateralBalance = useUserBalance(reserve?.collateralMint); - // TODO: - if(!obligation) { - + // TODO: + if (!obligation) { } const onReoay = useCallback(() => { diff --git a/src/views/repayReserve/index.tsx b/src/views/repayReserve/index.tsx index c582e27..be3d08d 100644 --- a/src/views/repayReserve/index.tsx +++ b/src/views/repayReserve/index.tsx @@ -12,7 +12,7 @@ import "./style.less"; import { LendingObligation } from "../../models"; export const RepayReserveView = () => { - const { id, obligation } = useParams<{ id: string, obligation?: string }>(); + const { id, obligation } = useParams<{ id: string; obligation?: string }>(); const lendingReserve = useLendingReserve(id); const reserve = lendingReserve?.info;