Skip to content

Commit

Permalink
Add build and fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pvyParts committed Sep 16, 2024
1 parent b164c56 commit 1784e16
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion corptools/static/corptools/bs5/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"index.html": {
"file": "assets/index-BKUs7nw8.js",
"file": "assets/index-ChW8inqx.js",
"src": "index.html",
"isEntry": true,
"imports": [
Expand Down
2 changes: 1 addition & 1 deletion frontend/frontend/build/static/.vite/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"index.html": {
"file": "assets/index-BKUs7nw8.js",
"file": "assets/index-ChW8inqx.js",
"src": "index.html",
"isEntry": true,
"imports": [
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/frontend/build/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
padding-top: 3.5em !important;
}
</style>
<script type="module" crossorigin src="/assets/index-BKUs7nw8.js"></script>
<script type="module" crossorigin src="/assets/index-ChW8inqx.js"></script>
<link rel="modulepreload" crossorigin href="/assets/@libs-BhVKESFe.js">
<link rel="modulepreload" crossorigin href="/assets/@react-router-DG-kUzyH.js">
<link rel="stylesheet" crossorigin href="/static/corptools/bs5/statics/css/index-DrstnHBG.css">
Expand Down
4 changes: 2 additions & 2 deletions frontend/frontend/src/Pages/Char/Skills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const CharacterSkills = () => {
setCharacter(data[0].character.character_id);
return <PanelLoader />;
} else {
const char_data = data.filter((obj: any) =>
obj.character.character_id === char_id ? Number(char_id) : 0
const char_data = data.filter(
(obj: any) => obj.character.character_id === Number(char_id ? char_id : 0)
);

let skill_data = char_data?.[0]?.skills;
Expand Down

0 comments on commit 1784e16

Please sign in to comment.