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}