lint fixes

This commit is contained in:
Boki 2025-06-20 07:15:12 -04:00
parent 1f190b1068
commit c1d04723e1
17 changed files with 34 additions and 27 deletions

View file

@ -635,7 +635,7 @@ export function PortfolioTable() {
<DataTable
data={data}
columns={columns}
onRowClick={row => console.log('Clicked:', row.symbol)}
onRowClick={_row => {/* Handle row click */}}
className="border border-border rounded-lg"
/>
);

View file

@ -49,7 +49,7 @@ export function AddProviderMappingDialog({
try {
const providersData = await fetchProviders();
setProviders(providersData);
} catch (error) {
} catch {
// Error loading providers - could add toast notification here
} finally {
setProvidersLoading(false);
@ -62,7 +62,7 @@ export function AddProviderMappingDialog({
try {
const exchangesData = await fetchUnmappedProviderExchanges(provider);
setUnmappedExchanges(exchangesData);
} catch (error) {
} catch {
// Error loading unmapped exchanges - could add toast notification here
} finally {
setExchangesLoading(false);
@ -102,7 +102,7 @@ export function AddProviderMappingDialog({
};
await onCreateMapping(request);
} catch (error) {
} catch {
// Error creating provider mapping - could add toast notification here
} finally {
setLoading(false);