Skip to content

Commit 30ec241

Browse files
committed
dev: Organize imports
1 parent 20ab8b5 commit 30ec241

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/pages/Poker/routes/Round.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { HOTKEY_SELECTOR_A_ENABLED, HOTKEY_SELECTOR_B_ENABLED } from "@/App";
12
import {
23
KEYBINDINGS_STATE,
34
PLAYERS_STATE,
@@ -8,7 +9,6 @@ import {
89
import CardSelector from "@/components/CardSelector";
910
import { CARD_SELECTOR_STATE } from "@/pages/Blackjack/routes/Round";
1011
import { Card, CardRank, CardSuit, Card_NOEMPTY } from "@/types/Card";
11-
import { createEvent } from "react-event-hook";
1212
import { availableCards } from "@/types/Keybindings";
1313
import {
1414
GameState,
@@ -24,7 +24,6 @@ import { getPlayer } from "@/utils/PlayerHelper";
2424
import { joinedStringToCards, rankToNumber } from "@/utils/PokerHelper";
2525
import { useRecoilImmerState } from "@/utils/RecoilImmer";
2626
import {
27-
Button,
2827
Container,
2928
Divider,
3029
Flex,
@@ -40,12 +39,12 @@ import { notifications } from "@mantine/notifications";
4039
import cloneDeep from "lodash/cloneDeep";
4140
import { TexasHoldem } from "poker-variants-odds-calculator";
4241
import { useEffect, useRef, useState } from "react";
42+
import { createEvent } from "react-event-hook";
4343
import { useHotkeys } from "react-hotkeys-hook";
4444
import { atom, useRecoilState, useRecoilValue } from "recoil";
4545
import CommunityCards from "../components/CommunityCards";
4646
import RoundPlayerCard from "../components/RoundPlayerCard";
4747
import { getDealerData } from "./PreRound";
48-
import { HOTKEY_SELECTOR_A_ENABLED, HOTKEY_SELECTOR_B_ENABLED } from "@/App";
4948

5049
export const FOLD_CONFIRM = atom<boolean>({
5150
key: "FOLD_CONFIRM",

0 commit comments

Comments
 (0)