From e9ff913b7e8932ddc8de4cf547e089e18e484fd0 Mon Sep 17 00:00:00 2001 From: Boki Date: Mon, 16 Jun 2025 18:37:20 -0400 Subject: [PATCH] linting --- apps/web/src/features/dashboard/DashboardPage.tsx | 4 ++-- apps/web/src/features/exchanges/ExchangesPage.tsx | 13 ++++++++----- .../exchanges/components/ExchangesTable.tsx | 2 +- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/apps/web/src/features/dashboard/DashboardPage.tsx b/apps/web/src/features/dashboard/DashboardPage.tsx index cdd412f..38cb115 100644 --- a/apps/web/src/features/dashboard/DashboardPage.tsx +++ b/apps/web/src/features/dashboard/DashboardPage.tsx @@ -1,4 +1,4 @@ -import { DashboardStats, DashboardActivity, PortfolioTable } from './components'; +import { DashboardActivity, DashboardStats, PortfolioTable } from './components'; export function DashboardPage() { return ( @@ -11,7 +11,7 @@ export function DashboardPage() { - +
diff --git a/apps/web/src/features/exchanges/ExchangesPage.tsx b/apps/web/src/features/exchanges/ExchangesPage.tsx index 4dfd747..49238dd 100644 --- a/apps/web/src/features/exchanges/ExchangesPage.tsx +++ b/apps/web/src/features/exchanges/ExchangesPage.tsx @@ -1,4 +1,9 @@ -import { ArrowPathIcon, CheckCircleIcon, ExclamationTriangleIcon, XMarkIcon } from '@heroicons/react/24/outline'; +import { + ArrowPathIcon, + CheckCircleIcon, + ExclamationTriangleIcon, + XMarkIcon, +} from '@heroicons/react/24/outline'; import { useEffect, useState } from 'react'; import { ExchangesTable } from './components/ExchangesTable'; import { useExchanges } from './hooks/useExchanges'; @@ -24,7 +29,7 @@ export function ExchangesPage() { const handleSync = async () => { setSyncing(true); setSyncStatus({ type: null, message: '' }); - + try { const result = await syncExchanges(); if (result) { @@ -95,9 +100,7 @@ export function ExchangesPage() { > {syncStatus.type === 'success' ? 'Sync Completed' : 'Sync Failed'}

-

- {syncStatus.message} -

+

{syncStatus.message}