Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Apr 11, 2024
1 parent fb727b5 commit d3c9c44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import React, { useState, type ComponentPropsWithoutRef } from 'react';
import React, {
useState,
type ComponentPropsWithoutRef,
useEffect,
} from 'react';

import { reportBudget } from 'loot-core/client/queries';
import { amountToInteger, integerToAmount } from 'loot-core/shared/util';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import React, { useState, type ComponentPropsWithoutRef, useEffect } from 'react';
import React, {
useState,
type ComponentPropsWithoutRef,
useEffect,
} from 'react';

import { rolloverBudget } from 'loot-core/client/queries';
import { amountToInteger, integerToAmount } from 'loot-core/shared/util';
Expand All @@ -11,7 +15,6 @@ import { View } from '../common/View';
import { FocusableAmountInput } from '../mobile/transactions/FocusableAmountInput';
import { type CommonModalProps } from '../Modals';
import { useSheetValue } from '../spreadsheet/useSheetValue';
import { useInitialMount } from '../../hooks/useInitialMount';

type RolloverCategoryBudgetMenuModalProps = ComponentPropsWithoutRef<
typeof CategoryBudgetMenu
Expand Down

0 comments on commit d3c9c44

Please sign in to comment.