fix any in SkillElem

This commit is contained in:
Olivier Gagnon 2022-07-18 03:03:07 -04:00
parent 91ca43707a
commit 40ad1a4758

@ -9,9 +9,10 @@ import Box from "@mui/material/Box";
import Paper from "@mui/material/Paper";
import AddIcon from "@mui/icons-material/Add";
import CloseIcon from "@mui/icons-material/Close";
import { Skill } from "../Skill";
interface IProps {
skill: any;
skill: Skill;
bladeburner: IBladeburner;
onUpgrade: () => void;
}