Skip to content

Commit

Permalink
Fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Apr 12, 2024
1 parent 571a9f7 commit d253770
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React, { type ComponentPropsWithoutRef } from 'react';
import React from 'react';

import { useNavigate } from '../../../hooks/useNavigate';
import { SvgAdd } from '../../../icons/v1';
import { theme } from '../../../style';
import { Link } from '../../common/Link';

type AddTransactionButtonProps = {
to: ComponentPropsWithoutRef<typeof Link>['to'];
to: string;
accountId?: string;
categoryId?: string;
};
Expand Down

0 comments on commit d253770

Please sign in to comment.