Skip to content

Commit 4a03939

Browse files
committed
Making the compiler happy
1 parent ce16dc5 commit 4a03939

File tree

2 files changed

+5
-16
lines changed

2 files changed

+5
-16
lines changed

src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import React, { useEffect, useState } from "react";
1+
import React from "react";
22
import ReactDOM from 'react-dom/client';
3-
import { useQuery, QueryClient, QueryClientProvider, QueryClientConfig } from '@tanstack/react-query';
3+
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
44
import { BrowserRouter as Router, Route, Routes, Link } from "react-router-dom";
55

66
import './style.scss';

src/pages/home/home.tsx

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import React from "react";
22
import { Link } from "react-router-dom";
33

4-
//@ts-expect-error
5-
import { ReactComponent as OneDSixSVG } from "../../1d6.svg";
64
import "../../style.scss";
75
import "./home.scss"
86
import useDeviceType from "../../lib/device.tsx";
@@ -47,18 +45,9 @@ export default function Home() {
4745

4846
<h2>Best Mods</h2>
4947
<div className="content adjustable-flex">
50-
<div>
51-
<a href="">cccc</a>
52-
<br />
53-
</div><br />
54-
<div>
55-
<a href="">bbbb</a>
56-
<br />
57-
</div><br />
58-
<div>
59-
<a href="">aaaa</a>
60-
<br />
61-
</div><br />
48+
{
49+
50+
}
6251
</div>
6352
<div className="spacer px15" />
6453
<Link className="rounded-link normal-link nowrap" to="/mods">More Mods</Link>

0 commit comments

Comments
 (0)