Skip to content

Commit 3d237ba

Browse files
adding slot txn bars
1 parent 92e62ce commit 3d237ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+4265
-341
lines changed

eslint.config.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ export default tseslint.config(
3535
parser: tseslint.parser,
3636
parserOptions: {
3737
projectService: {
38-
allowDefaultProject: ["*.mjs", "src/d3Sankey/*.js"],
38+
allowDefaultProject: [
39+
"*.mjs",
40+
"src/d3Sankey/*.js",
41+
"src/uplot/*.js",
42+
],
3943
defaultProject: "tsconfig.json",
4044
},
4145
tsconfigRootDir: import.meta.dirname,
@@ -106,5 +110,5 @@ export default tseslint.config(
106110
"@typescript-eslint/no-useless-constructor": "warn",
107111
"react/prop-types": "off",
108112
},
109-
},
113+
}
110114
);

index.html

Lines changed: 17 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,19 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<link
6-
rel="icon"
7-
type="image/svg+xml"
8-
href="./src/assets/firedancer_logo.svg"
9-
/>
10-
<link
11-
rel="preload"
12-
as="font"
13-
crossorigin="anonymous"
14-
href="/node_modules/@fontsource/inter-tight/files/inter-tight-latin-400-normal.woff2"
15-
type="font/woff2"
16-
/>
17-
<link
18-
rel="preload"
19-
type="image/svg+xml"
20-
as="image"
21-
href="./src/assets/firedancer.svg"
22-
/>
23-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
24-
<title>Firedancer</title>
25-
</head>
26-
<body>
27-
<div id="root"></div>
28-
<script type="module" src="/src/main.tsx"></script>
29-
</body>
30-
</html>
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" type="image/svg+xml" href="./src/assets/firedancer_logo.svg" />
7+
<!-- <link rel="preload" as="font" crossorigin="anonymous"
8+
href="/node_modules/@fontsource/roboto-mono/files/roboto-mono-latin-400-normal.woff2" type="font/woff2" />
9+
<link rel="preload" type="image/svg+xml" as="image" href="./src/assets/firedancer.svg" /> -->
10+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
11+
<title>Firedancer</title>
12+
</head>
13+
14+
<body>
15+
<div id="root"></div>
16+
<script type="module" src="/src/main.tsx"></script>
17+
</body>
18+
19+
</html>

0 commit comments

Comments
 (0)