Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
simplify parent paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jordaaash committed Apr 13, 2021
1 parent 0a04850 commit 91b6fff
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/common/src/contexts/wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { WalletAdapter } from "@solana/wallet-base";
import Wallet from "@project-serum/sol-wallet-adapter";
import { Button, Modal } from "antd";
import React, { useCallback, useContext, useEffect, useMemo, useState} from "react";
import { notify } from "./../utils/notifications";
import { notify } from "../utils/notifications";
import { useConnectionConfig } from "./connection";
import { useLocalStorageState } from "./../utils/utils";
import { useLocalStorageState } from "../utils/utils";
import { LedgerProvider } from "@solana/wallet-ledger";
import { SolongWalletAdapter } from "../wallet-adapters/solong";
import { PhantomWalletAdapter } from "../wallet-adapters/phantom";
Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/wallet-adapters/solong_adapter.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import EventEmitter from "eventemitter3";
import { PublicKey } from "@solana/web3.js";
import { notify } from "./../utils/notifications";
import { notify } from "../utils/notifications";

export class SolongAdapter extends EventEmitter {
_publicKey: any;
Expand Down
2 changes: 1 addition & 1 deletion packages/lending/src/views/liquidate/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useMemo } from "react";
import { GUTTER, LABELS } from "../../constants";
import { LiquidateItem } from "./item";
import { useEnrichedLendingObligations } from "./../../hooks";
import { useEnrichedLendingObligations } from "../../hooks";
import "./style.less";
import { Card, Col, Row, Statistic, Typography } from "antd";
import { BarChartStatistic } from "../../components/BarChartStatistic";
Expand Down
6 changes: 3 additions & 3 deletions packages/lending/src/views/reserve/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from "react";
import { useLendingReserve } from "./../../hooks";
import { useLendingReserve } from "../../hooks";
import { useParams } from "react-router-dom";
import "./style.less";

import { UserLendingCard } from "./../../components/UserLendingCard";
import { ReserveStatus } from "./../../components/ReserveStatus";
import { UserLendingCard } from "../../components/UserLendingCard";
import { ReserveStatus } from "../../components/ReserveStatus";
import { Col, Row } from "antd";
import { GUTTER } from "../../constants";

Expand Down

0 comments on commit 91b6fff

Please sign in to comment.