Skip to content

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
blarfoon committed Aug 21, 2021
1 parent e7fd5bf commit 4ee6166
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/desktop/DesktopRoot.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useEffect, memo, useState } from 'react';
import React, { useEffect, memo } from 'react';
import { useDidMount } from 'rooks';
import styled from 'styled-components';
import { Switch } from 'react-router';
Expand Down Expand Up @@ -59,7 +59,7 @@ function DesktopRoot({ store }) {
const javaPath = useSelector(state => state.settings.java.path);
const java16Path = useSelector(state => state.settings.java.path16);
const location = useSelector(state => state.router.location);
const modals = useSelector(state => state.modals);
// const modals = useSelector(state => state.modals);
const shouldShowDiscordRPC = useSelector(state => state.settings.discordRPC);
// const [contentStyle, setContentStyle] = useState({ transform: 'scale(1)' });

Expand Down

0 comments on commit 4ee6166

Please sign in to comment.