diff --git a/src/client/src/modules/game/GameView.tsx b/src/client/src/modules/game/GameView.tsx index 92f7a71..1d11841 100644 --- a/src/client/src/modules/game/GameView.tsx +++ b/src/client/src/modules/game/GameView.tsx @@ -1016,16 +1016,20 @@ export const GameView: React.FC = ({ gameState, currentPlayerId } {activeDragId ? ( -
- { - const c = gameState.cards[activeDragId]; - return c?.image_uris?.normal || - (c?.definition?.set && c?.definition?.id ? `/cards/images/${c.definition.set}/full/${c.definition.id}.jpg` : c?.imageUrl); - })()} - alt="Drag Preview" - className="w-full h-full object-cover rounded-xl shadow-2xl" - /> +
+ {(() => { + const c = gameState.cards[activeDragId]; + if (!c) return null; + return ( + { }} + onClick={() => { }} + className="w-full h-full rounded-lg shadow-2xl ring-2 ring-white/50" + /> + ); + })()}
) : null}