Skip to content

Commit

Permalink
remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
JollyGrin committed Oct 5, 2024
1 parent cec7439 commit 864c6ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/organisms/Draft/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const DraftBoard = (props: {
player: DraftPlayerData;
setPlayerData(data: DraftPlayerData): void;
}) => {
const [activeView, setActiveView] = useState(0);
const [activeView] = useState(0);
const cardView = useMemo(() => {
return props.player.finishedPacks?.[activeView];
}, [activeView, props.player.finishedPacks.length]);
Expand Down

0 comments on commit 864c6ff

Please sign in to comment.