mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-29 18:13:47 +00:00
fix: gift code display + share modal backdrop
- Don't uppercase gift codes (tokens are case-sensitive base64) - Lighten share modal backdrop (bg-dark-900/40 instead of bg-black/60)
This commit is contained in:
@@ -10,7 +10,7 @@ import { AnimatedCrossmark } from '@/components/ui/AnimatedCrossmark';
|
||||
import { cn } from '@/lib/utils';
|
||||
|
||||
function formatGiftCode(token: string): string {
|
||||
return `GIFT-${token.slice(0, 12).toUpperCase()}`;
|
||||
return `GIFT-${token.slice(0, 12)}`;
|
||||
}
|
||||
|
||||
const MAX_POLL_MS = 10 * 60 * 1000; // 10 minutes
|
||||
|
||||
Reference in New Issue
Block a user