Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion backend/src/services/game/round-lifecycle.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { Round } from '../../entities/round.entity.js';
import type { PlayerBet } from '../../entities/player-bet.entity.js';
import { securityMonitor } from '../security-monitor.service.js';
import { auditLogService } from '../audit-log.service.js';
import { AdminActionType } from '../../entities/admin-log.entity.js';
Expand Down
5 changes: 1 addition & 4 deletions frontend/components/game/BetControls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,8 @@ const BetControls: React.FC = () => {
}
if (res?.success) {
setTxHash(res.txHash || null);
setLastBetAmount(amountToBet); // Track last bet
setBetAmount("0.10");
setLastBetAmount(amountToBet);
setUseFreeBet(false);
setAutoCashoutMultiplier(null);
// Refresh free bets info
await fetchFreeBetsInfo();
} else {
// Provide user-friendly error messages
Expand Down
Loading