Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
blarfoon committed Jun 3, 2021
1 parent 0a480cb commit 934723f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions public/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const {
default: { fromBase64: toBase64URL }
} = require('base64url');
const { URL } = require('url');
const murmur = require('./native/murmur2.js');
const nsfw = require('./native/nsfw.js');
const murmur = require('./native/murmur2');
const nsfw = require('./native/nsfw');

const fs = fss.promises;

Expand Down
1 change: 1 addition & 0 deletions src/common/components/RouteWithSubRoutes.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Route } from 'react-router';
function RouteWithSubRoutes(route) {
return (
<Route
// eslint-disable-next-line react/destructuring-assignment
path={route.path}
render={props => (
// eslint-disable-next-line react/jsx-props-no-spreading
Expand Down
5 changes: 2 additions & 3 deletions src/common/reducers/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -2497,9 +2497,8 @@ export function launchInstance(instanceName) {
const librariesPath = _getLibrariesPath(state);
const assetsPath = _getAssetsPath(state);
const { memory, args } = state.settings.java;
const {
resolution: globalMinecraftResolution
} = state.settings.minecraftSettings;
const { resolution: globalMinecraftResolution } =
state.settings.minecraftSettings;
const {
loader,
javaArgs,
Expand Down

0 comments on commit 934723f

Please sign in to comment.