Skip to content

Commit

Permalink
remove unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
vgmoose committed Jan 1, 2024
1 parent 176879d commit 20ef9cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/Header.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { Component, Fragment } from 'react';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faTwitter, faDiscord } from '@fortawesome/free-brands-svg-icons'
import { faCube, faPlus, faServer, faSignInAlt } from '@fortawesome/free-solid-svg-icons'
// import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
// import { faTwitter, faDiscord } from '@fortawesome/free-brands-svg-icons'
// import { faCube, faPlus, faServer, faSignInAlt } from '@fortawesome/free-solid-svg-icons'
import './MainDisplay.css';
import icon from './img/icon.png';
import { getParams, platformIcons } from './Utils';
Expand Down
2 changes: 1 addition & 1 deletion src/PlatformPicker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { Fragment } from 'react';
import React from 'react';
import { platformIcons } from "./Utils";

export const plats = {
Expand Down
2 changes: 1 addition & 1 deletion src/QuickStore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { faCircleNotch, faDownload } from '@fortawesome/free-solid-svg-icons';
import { faGithub } from '@fortawesome/free-brands-svg-icons';
import JSZip from 'jszip';
import { urlToPromise, saveAs } from './LibGet';
import PlatformPicker, { plats } from './PlatformPicker';
import PlatformPicker from './PlatformPicker';
import AppList from './AppList';
import loader from './img/loader.gif';
import noicon from './img/noicon.png';
Expand Down

0 comments on commit 20ef9cd

Please sign in to comment.