Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetrunic committed Oct 30, 2019
1 parent 990a9d4 commit bf323fc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -42,6 +42,8 @@ For building components in isolation you can use [Storybook](https://storybook.j

Just run `yarn storybook`

Design is based on: https://www.figma.com/file/dt1Z45BJkDGOg63IdNYwbR

## Packaging
We use [Electron builder](https://www.electron.build/) to build and package the application. By default you can run the following to package for your current platform:

Expand Down
2 changes: 1 addition & 1 deletion src/renderer/containers/Onboard/OnboardContainer.tsx
Expand Up @@ -3,7 +3,7 @@ import {Background} from "../../components/Background/Background";
import {Modal} from "../../components/Modal/Modal";
import {ButtonPrimary, ButtonSecondary} from "../../components/Button/ButtonStandard";
import {StepNavigation} from "../../components/StepNavigation/StepNavigation";
import { RouteComponentProps } from "react-router";
import {RouteComponentProps} from "react-router";

const steps = [
{stepId: 1, stepName: "Signing key"},
Expand Down
2 changes: 1 addition & 1 deletion test/unit/models/account.spec.ts
Expand Up @@ -47,7 +47,7 @@ jest.mock("fs", () => ({
}));

import {CGAccount} from "../../../src/renderer/models/account";
import { Eth1KeystoreFactory } from '../../../src/renderer/services/keystore';
import {Eth1KeystoreFactory} from "../../../src/renderer/services/keystore";
// Passwords for keystores 1 & 2
const PRIMARY_KEYSTORE_PASSWORD = "chainGuardianPass";

Expand Down
2 changes: 1 addition & 1 deletion test/unit/utils/docker/docker-utils.spec.ts
@@ -1,4 +1,4 @@
import { extractDockerVersion } from '../../../../src/renderer/services/docker/utils';
import {extractDockerVersion} from "../../../../src/renderer/services/docker/utils";

describe("docker utils unit tests", () => {
it("should successfully extract docker version.", async () => {
Expand Down

0 comments on commit bf323fc

Please sign in to comment.