fixed lint issues

This commit is contained in:
Boki 2025-06-23 17:07:30 -04:00
parent b67fe48f72
commit 519d24722e
12 changed files with 54 additions and 46 deletions

View file

@ -17,7 +17,7 @@ export function ProxyStatsCard({ stats }: ProxyStatsCardProps) {
: 0;
const formatDate = (dateString?: string) => {
if (!dateString) return 'Never';
if (!dateString) {return 'Never';}
const date = new Date(dateString);
return date.toLocaleString();
};