Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mudspot committed May 17, 2022
1 parent 8db8ded commit 3bbc8f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/features/applications/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ enum HatApplicationKind {
APP = 'App',
}

type HatAppStatusIcons = 'check_circle' | 'sync' | 'sync_problem' | 'add_circle_outline' | 'refresh' | 'exit_to_app' | 'facebook';
type HatAppStatusIcons = 'check_circle' | 'sync' | 'sync_problem' | 'add_circle_outline' | 'refresh' | 'exit_to_app';

export const getAppStatus = (app: HatApplication): HatApplicationStatus => {
const { setup, enabled, active, needsUpdating, mostRecentData } = app;
Expand Down
2 changes: 1 addition & 1 deletion src/features/profile/ProfileDetails.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createMemoryHistory } from "history";
import { render, screen } from "@testing-library/react";
import { Route, Router } from "react-router-dom";
import { Provider } from "react-redux";
import profileSlice, { DEFAULT_PHATA_BUNDLE, DEFAULT_PROFILE_SHARE_CONFIG} from "./profileSlice";
import profileSlice, { DEFAULT_PHATA_BUNDLE, DEFAULT_PROFILE_SHARE_CONFIG } from "./profileSlice";
import TEST_PROFILE from "../../testData/Profile";
import authenticationSlice from "../authentication/authenticationSlice";
import TEST_AUTH from "../../testData/Auth";
Expand Down

0 comments on commit 3bbc8f7

Please sign in to comment.