Remove logs

This commit is contained in:
Justin Edmund 2020-10-19 06:47:32 -07:00
parent b60b1c8c18
commit 55aaf65a0a
2 changed files with 0 additions and 3 deletions

View file

@ -41,8 +41,6 @@ const Party = (props: Props) => {
}
} : {}
console.log(headers)
// Grid data
const [characters, setCharacters] = useState<GridArray<Character>>({})
const [weapons, setWeapons] = useState<GridArray<Weapon>>({})

View file

@ -8,7 +8,6 @@ interface Props extends RouteComponentProps {}
const NewRoute: React.FC<Props> = () => {
function callback(path: string) {
// This is scuffed, how do we do this natively?
console.log("Callback to rewrite URL called")
window.history.replaceState(null, `Grid Tool`, `${path}`)
}