linting
This commit is contained in:
parent
065d3943f6
commit
e9ff913b7e
3 changed files with 11 additions and 8 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { DashboardStats, DashboardActivity, PortfolioTable } from './components';
|
||||
import { DashboardActivity, DashboardStats, PortfolioTable } from './components';
|
||||
|
||||
export function DashboardPage() {
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
@ -95,9 +100,7 @@ export function ExchangesPage() {
|
|||
>
|
||||
{syncStatus.type === 'success' ? 'Sync Completed' : 'Sync Failed'}
|
||||
</p>
|
||||
<p className="text-xs mt-1 text-text-secondary">
|
||||
{syncStatus.message}
|
||||
</p>
|
||||
<p className="text-xs mt-1 text-text-secondary">{syncStatus.message}</p>
|
||||
</div>
|
||||
<button
|
||||
onClick={() => setSyncStatus({ type: null, message: '' })}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue