Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
OldStarchy committed Jul 22, 2024
1 parent 5f20bcd commit 18b109d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/CardSelectToggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useEffect, useState } from 'react';
import { CardBase } from './CardBase';

export function CardSelectToggle({
cardName: cardName,
cardName,
cardCount,
selected,
setSelected,
Expand Down
2 changes: 1 addition & 1 deletion src/components/DeckView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function DeckView({
deck: Deck;
cardPrefix?: (card: DeckItem, index: number) => React.ReactNode;
}) {
const [universe, _dispatch] = useUniverse();
const [universe] = useUniverse();
const groupedCards = deck.items;
const [expanded, setExpanded] = React.useState(false);

Expand Down
1 change: 1 addition & 0 deletions src/context/universe/DeckUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ export default class DeckUtil {

default:
const _exhaustiveCheck: never = item;
void _exhaustiveCheck;
}
}
}
1 change: 1 addition & 0 deletions src/context/universe/actions/GroupActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ function revealSingletonGroups(state: Universe) {

default: {
const _exhaustiveCheck: never = item;
void _exhaustiveCheck;
return true;
}
}
Expand Down
1 change: 1 addition & 0 deletions src/context/universe/actions/UniverseActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export const universeReducer: Reducer<

default:
const _exhaustiveCheck: never = action;
void _exhaustiveCheck;
return state;
}
};
Expand Down

0 comments on commit 18b109d

Please sign in to comment.