Skip to content

Commit

Permalink
By Default show inactive cards (#79)
Browse files Browse the repository at this point in the history
* Default inactive cards shown
  • Loading branch information
thedev132 authored Dec 29, 2024
1 parent b8d63e4 commit 506188a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/cards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function CardsPage({ navigation }: Props) {
reloadGrantCards();
});

const [frozenCardsShown, setFrozenCardsShown] = useState(false);
const [frozenCardsShown, setFrozenCardsShown] = useState(true);
const [allCards, setAllCards] = useState<((Card & Required<Pick<Card, "last4">>) | GrantCard)[]>();

useEffect(() => {
Expand Down

0 comments on commit 506188a

Please sign in to comment.