Skip to content

Commit 5839c3b

Browse files
committed
fix: show McpMux logo in OAuth consent modal header
Replace duplicate client logo in the authorization request header with the McpMux app logo. The client info card below still shows the client's own icon (VS Code, Cursor, etc). Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 353ee76 commit 5839c3b

1 file changed

Lines changed: 6 additions & 12 deletions

File tree

apps/desktop/src/components/OAuthConsentModal.tsx

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import { useState, useEffect } from 'react';
1414
import { invoke } from '@tauri-apps/api/core';
1515
import { listen } from '@tauri-apps/api/event';
16-
import { Shield, Check, X, AlertCircle, Loader2, Globe, Lock } from 'lucide-react';
16+
import { Check, X, AlertCircle, Loader2, Globe, Lock } from 'lucide-react';
1717
import {
1818
Button,
1919
Card,
@@ -293,17 +293,11 @@ export function OAuthConsentModal() {
293293
<Card className="w-full max-w-md mx-4 shadow-xl animate-in fade-in zoom-in duration-200">
294294
<CardHeader>
295295
<div className="flex items-center gap-3">
296-
{logoUrl ? (
297-
<img
298-
src={logoUrl}
299-
alt={details.clientName}
300-
className="h-10 w-10 rounded-full"
301-
/>
302-
) : (
303-
<div className="p-2 rounded-full bg-primary-500/10">
304-
<Shield className="h-6 w-6 text-primary-500" />
305-
</div>
306-
)}
296+
<img
297+
src="/mcpmux.svg"
298+
alt="McpMux"
299+
className="h-10 w-10 rounded-lg"
300+
/>
307301
<div>
308302
<CardTitle>Authorization Request</CardTitle>
309303
<CardDescription>

0 commit comments

Comments
 (0)