Skip to content

Commit

Permalink
Fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Feb 3, 2024
1 parent 3b5816c commit e2c4606
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/desktop-client/src/components/FinancesApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import React, { type ReactElement, useEffect, useMemo } from 'react';
import { DndProvider } from 'react-dnd';
import { HTML5Backend as Backend } from 'react-dnd-html5-backend';
import { useSelector } from 'react-redux';
import {
Route,
Routes,
Expand Down Expand Up @@ -42,7 +43,6 @@ import { FloatableSidebar } from './sidebar';
import { SidebarProvider } from './sidebar/SidebarProvider';
import { Titlebar, TitlebarProvider } from './Titlebar';
import { TransactionEdit } from './transactions/MobileTransaction';
import { useSelector } from 'react-redux';

function NarrowNotSupported({
redirectTo = '/budget',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type DynamicBudgetTableInnerProps = {
} & ComponentProps<typeof BudgetTable>;

const DynamicBudgetTableInner = forwardRef<
BudgetTable,
typeof BudgetTable,
DynamicBudgetTableInnerProps
>(
(
Expand Down Expand Up @@ -103,7 +103,7 @@ const DynamicBudgetTableInner = forwardRef<
);

export const DynamicBudgetTable = forwardRef<
BudgetTable,
typeof BudgetTable,
DynamicBudgetTableInnerProps
>((props, ref) => {
return (
Expand Down

0 comments on commit e2c4606

Please sign in to comment.