Skip to content

Commit

Permalink
Lint changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
zachwhelchel committed Jan 11, 2024
1 parent 4c8df96 commit 28d8e55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type SimpleFinInitialiseProps = {
onSuccess: () => void;
};

const SimpleFinInitialise = ({
export const SimpleFinInitialise = ({
modalProps,
onSuccess,
}: SimpleFinInitialiseProps) => {
Expand Down Expand Up @@ -87,5 +87,3 @@ const SimpleFinInitialise = ({
</Modal>
);
};

export default SimpleFinInitialise;
2 changes: 1 addition & 1 deletion packages/desktop-client/src/hooks/useSimpleFinStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { send } from 'loot-core/src/platform/client/fetch';

import useSyncServerStatus from './useSyncServerStatus';

export default function useSimpleFinStatus() {
export function useSimpleFinStatus() {
const [configuredSimpleFin, setConfiguredSimpleFin] = useState<
boolean | null
>(null);
Expand Down

0 comments on commit 28d8e55

Please sign in to comment.