Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hugolxt committed Dec 16, 2024
1 parent f3d8de7 commit abd7028
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/components/dapp/WalletConnectors.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import { useMemo } from "react";
import type { Connector } from "wagmi";
import walletCoinbaseIcon from "../../assets/walletCoinbase.svg";
import walletConnectIcon from "../../assets/walletConnect.svg";
import { useWalletContext } from "../../context/Wallet.context";
import Group from "../extenders/Group";
import Button from "../primitives/Button";
Expand All @@ -6,10 +10,6 @@ import Icon from "../primitives/Icon";
import Image from "../primitives/Image";
import Input from "../primitives/Input";
import Text from "../primitives/Text";
import type { Connector } from "wagmi";
import walletConnectIcon from "../../assets/walletConnect.svg";
import walletCoinbaseIcon from "../../assets/walletCoinbase.svg";
import { useMemo } from "react";

export default function WalletConnectors() {
const { config, connect, connector: _connected } = useWalletContext();
Expand Down
3 changes: 2 additions & 1 deletion src/components/extenders/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ export default function Select<
// resetValueOnHide
setValue={value => {
setSearch(value);
}}>
}}
>
<Ariakit.SelectProvider
setValue={v => setValue(v as Value)}
value={value as string}
Expand Down
1 change: 0 additions & 1 deletion src/utils/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import type { Dispatch, SetStateAction } from "react";
import type { Coloring, Mode, State } from "../theming/variables";

/**
Expand Down

0 comments on commit abd7028

Please sign in to comment.