Skip to content

Commit

Permalink
holy commit 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ivozilkenat committed Apr 6, 2024
1 parent 2b3e45d commit 18cf810
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/src/components/Banner.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function Banner() {
<div className="brand">Wischen & Mischen</div>
<div className="spacer"></div> {/* This will take up the unused space */}
<div className="nav-items">
<div className="nav-item"><a href="/docs" target="_blank">Docs</a></div>
<div className="nav-item"><a href="/docs" target="_blank">Docs</a></div>
<div className="nav-item"><a href="https://www.youtube.com/watch?v=xvFZjo5PgG0" target="_blank">Home</a></div>
<div className="nav-item"><a href="https://www.youtube.com/watch?v=xvFZjo5PgG0" target="_blank">Data Solutions</a></div>
<div className="nav-item"><a href="https://www.youtube.com/watch?v=xvFZjo5PgG0" target="_blank">About</a></div>
Expand Down
3 changes: 0 additions & 3 deletions client/src/components/RealtimeMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ function RealtimeMap() {
}, []);

const tripMarkers = Object.values(data).map(item => {
// console.log(item.utilization.rel);
let icon;
let color;
if (item.utilization.rel == null) {
Expand All @@ -54,8 +53,6 @@ function RealtimeMap() {

icon = getIcon(item.subType, color);

console.log(icon.options)

return (
<Marker key={item.id} position={[item.position.lat, item.position.lon]} icon={icon}>
<Popup>
Expand Down
4 changes: 2 additions & 2 deletions dev/randomutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import time
import numpy as np

# BASEURL = f"https://hackhpi24.ivo-zilkenat.de/api/"
BASEURL = f"http://localhost:3001/api/"
BASEURL = f"https://hackhpi24.ivo-zilkenat.de/api/"
# BASEURL = f"http://localhost:3001/api/"

capacities = {"suburban": 600,
"subway": 600,
Expand Down

0 comments on commit 18cf810

Please sign in to comment.