From 9847de82aa39792bd3868e8fdf83b26943482780 Mon Sep 17 00:00:00 2001 From: bartosz-lipinski <264380+bartosz-lipinski@users.noreply.github.com> Date: Sat, 21 Nov 2020 23:54:49 -0600 Subject: [PATCH] style: format --- src/components/RepayInput/index.tsx | 5 ++--- src/views/repayReserve/index.tsx | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) 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;