fix commander on DeckCard component

This commit is contained in:
matthieur
2025-03-06 10:14:43 +01:00
parent 904403508f
commit 217f1b662f
3 changed files with 10 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ export interface Deck {
id: string;
name: string;
format: string;
cards: { card: Card; quantity: number }[];
cards: { card: Card; quantity: number, is_commander: boolean }[];
userId: string;
createdAt: Date;
updatedAt: Date;