Skip to content

Commit 0f6d528

Browse files
committed
Remove external link icon and domain display from SMTP Checker UI, and associated unused imports.
1 parent 3557eee commit 0f6d528

1 file changed

Lines changed: 2 additions & 12 deletions

File tree

src/features/SmtpChecker/SmtpChecker.jsx

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import React, { useState } from 'react';
2-
import { ExternalLink, RefreshCw } from 'lucide-react';
1+
import { useState } from 'react';
2+
import { RefreshCw } from 'lucide-react';
33

44
const SmtpChecker = () => {
55
const [key, setKey] = useState(0);
@@ -13,7 +13,6 @@ const SmtpChecker = () => {
1313
<div className="flex items-center justify-between px-4 py-3 border-b border-slate-800 bg-slate-900/50">
1414
<div className="flex items-center gap-2">
1515
<h2 className="text-sm font-medium text-slate-200">SMTP Checker</h2>
16-
<span className="text-xs text-slate-500 font-mono hidden sm:inline-block">smtp-checker.runany.dev</span>
1716
</div>
1817
<div className="flex items-center gap-2">
1918
<button
@@ -23,15 +22,6 @@ const SmtpChecker = () => {
2322
>
2423
<RefreshCw size={14} />
2524
</button>
26-
<a
27-
href="https://smtp-checker-1092632052494.asia-southeast1.run.app"
28-
target="_blank"
29-
rel="noopener noreferrer"
30-
className="p-1.5 text-slate-400 hover:text-slate-100 hover:bg-slate-800 rounded-md transition-colors"
31-
title="Open in new tab"
32-
>
33-
<ExternalLink size={14} />
34-
</a>
3525
</div>
3626
</div>
3727

0 commit comments

Comments
 (0)