Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
datadanne committed Sep 5, 2023
1 parent 3650caf commit 4447d3c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ethereum/test/MissionsManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ describe("MissionsManager [ @skip-on-coverage ]", function () {
});

it("does not allow contributing to disabled missions", async () => {
const [admin, user1, user2] = accounts;
const [admin, user1] = accounts;

const txn = await manager
.connect(admin)
Expand Down
1 change: 0 additions & 1 deletion garage/src/pages/Admin/MissionAdmin.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, { useCallback, useEffect, useMemo, useState } from "react";
import orderBy from "lodash/orderBy";
import {
Button,
Divider,
Expand Down
2 changes: 1 addition & 1 deletion garage/src/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { PilotDetails } from "./pages/PilotDetails";
import { OwnerDetails } from "./pages/OwnerDetails";
import { Gallery } from "./pages/Gallery";
import { Admin } from "./pages/Admin";
import { MissionAdmin } from "./pages/admin/MissionAdmin";
import { MissionAdmin } from "./pages/Admin/MissionAdmin";
import { Proposals } from "./pages/Proposals";
import { Proposal } from "./pages/Proposal";
import { MissionBoard } from "./pages/MissionBoard";
Expand Down

0 comments on commit 4447d3c

Please sign in to comment.