diff --git a/src/gate/GateFlowGraph.tsx b/src/gate/GateFlowGraph.tsx index 6e060c6..b033a9f 100644 --- a/src/gate/GateFlowGraph.tsx +++ b/src/gate/GateFlowGraph.tsx @@ -172,7 +172,7 @@ export default function GateFlowGraph(props: Props) { const flowChart = () => { return ( - + Mass Air Flow} subheader={ @@ -369,7 +369,7 @@ export default function GateFlowGraph(props: Props) { - + Approximate Runtime: @@ -381,7 +381,7 @@ export default function GateFlowGraph(props: Props) { - + Cost to run PCA: @@ -396,7 +396,7 @@ export default function GateFlowGraph(props: Props) { - + Cost to run APU: @@ -411,7 +411,7 @@ export default function GateFlowGraph(props: Props) { - + Total Cost: diff --git a/src/pages/Gate.tsx b/src/pages/Gate.tsx index d29dde4..3d1a3ea 100644 --- a/src/pages/Gate.tsx +++ b/src/pages/Gate.tsx @@ -115,17 +115,13 @@ export default function Gate(props: Props) { }; useEffect(() => { - console.log(gateID) let key = gateID; let kind = "gate"; if (as) { key = as; kind = "team"; } - console.log(key) - console.log(kind) userAPI.getUser(user.id(), { key: key, kind: kind } as Scope).then(resp => { - console.log(resp) setPermissions(resp.permissions); }); }, [as, gateID, userAPI, user]);