From 55aaf65a0af7c6bc4b1aa770bc28fb92d0962ff2 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 19 Oct 2020 06:47:32 -0700 Subject: [PATCH] Remove logs --- src/components/Party/index.tsx | 2 -- src/routes/NewRoute/index.tsx | 1 - 2 files changed, 3 deletions(-) diff --git a/src/components/Party/index.tsx b/src/components/Party/index.tsx index cbed37e5..deee46bc 100644 --- a/src/components/Party/index.tsx +++ b/src/components/Party/index.tsx @@ -41,8 +41,6 @@ const Party = (props: Props) => { } } : {} - console.log(headers) - // Grid data const [characters, setCharacters] = useState>({}) const [weapons, setWeapons] = useState>({}) diff --git a/src/routes/NewRoute/index.tsx b/src/routes/NewRoute/index.tsx index 049399b6..e5536e5e 100644 --- a/src/routes/NewRoute/index.tsx +++ b/src/routes/NewRoute/index.tsx @@ -8,7 +8,6 @@ interface Props extends RouteComponentProps {} const NewRoute: React.FC = () => { 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}`) }