fix: show only mobile wallet option on mobile devices

This commit is contained in:
2026-02-22 21:40:17 +03:00
parent ce8169eede
commit a5eea60858
+6 -2
View File
@@ -1,6 +1,7 @@
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from 'react';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
import { Wallet, Chrome, ExternalLink, Copy, Check, LogOut, Award, Users, TrendingUp, Shield, Smartphone } from 'lucide-react'; import { Wallet, Chrome, ExternalLink, Copy, Check, LogOut, Award, Users, TrendingUp, Shield, Smartphone } from 'lucide-react';
import { useIsMobile } from '@/hooks/use-mobile';
import { import {
Dialog, Dialog,
DialogContent, DialogContent,
@@ -35,6 +36,7 @@ export const WalletModal: React.FC<WalletModalProps> = ({ isOpen, onClose }) =>
} = usePezkuwi(); } = usePezkuwi();
const { t } = useTranslation(); const { t } = useTranslation();
const isMobile = useIsMobile();
const [copied, setCopied] = useState(false); const [copied, setCopied] = useState(false);
const [showWCModal, setShowWCModal] = useState(false); const [showWCModal, setShowWCModal] = useState(false);
const [scores, setScores] = useState<UserScores>({ const [scores, setScores] = useState<UserScores>({
@@ -332,9 +334,10 @@ export const WalletModal: React.FC<WalletModalProps> = ({ isOpen, onClose }) =>
</div> </div>
</div> </div>
) : ( ) : (
// No accounts, show two connection options // No accounts — mobile: only mobile wallet, desktop: both options
<div className="space-y-3"> <div className="space-y-3">
{/* Option 1: Browser Extension */} {/* Option 1: Browser Extension (desktop only) */}
{!isMobile && (
<div className="rounded-lg border border-gray-700 bg-gray-800/30 p-4 space-y-3"> <div className="rounded-lg border border-gray-700 bg-gray-800/30 p-4 space-y-3">
<div className="flex items-center gap-2"> <div className="flex items-center gap-2">
<Chrome className="h-5 w-5 text-green-400" /> <Chrome className="h-5 w-5 text-green-400" />
@@ -361,6 +364,7 @@ export const WalletModal: React.FC<WalletModalProps> = ({ isOpen, onClose }) =>
{t('walletModal.extensionGet')} {t('walletModal.extensionGet')}
</a> </a>
</div> </div>
)}
{/* Option 2: Mobile Wallet */} {/* Option 2: Mobile Wallet */}
<div className="rounded-lg border border-gray-700 bg-gray-800/30 p-4 space-y-3"> <div className="rounded-lg border border-gray-700 bg-gray-800/30 p-4 space-y-3">