Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
j-f1 committed Jul 4, 2023
1 parent d6bdc97 commit 5fc7323
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions packages/desktop-client/src/components/Notifications.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
import React, { useState, useEffect, useMemo, SetStateAction } from 'react';
import React, {
useState,
useEffect,
useMemo,
type SetStateAction,
} from 'react';
import { connect, useSelector } from 'react-redux';

import { bindActionCreators } from 'redux';

import * as actions from 'loot-core/src/client/actions';
import type { NotificationWithId } from 'loot-core/src/client/state-types/notifications';

import Loading from '../icons/AnimatedLoading';
import Delete from '../icons/v0/Delete';
Expand All @@ -18,7 +24,6 @@ import {
ExternalLink,
LinkButton,
} from './common';
import { NotificationWithId } from 'loot-core/src/client/state-types/notifications';

function compileMessage(
message: string,
Expand Down

0 comments on commit 5fc7323

Please sign in to comment.