Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bus-bunching-bug-fix #45

Merged
merged 6 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ __pycache__/
*.webm
node_modules/
build/
devbox.*
devbox.*
.devbox/
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ const ControlsComponent = () => {
[sendMessage]
);

const busStopSymbol = (index: number) => {
let stopStyle = {
const busStopSymbol = (index) => {
const stopStyle = {
...buttonStyle,
color: stopColors[index % stopColors.length],
};
Expand Down Expand Up @@ -112,9 +112,9 @@ const ControlsComponent = () => {
<div css={containerStyle}>
<h1>Bus Bunching</h1>
<p>
Learn more about bus bunching here:{" "}
Learn more about bus bunching here:{' '}
<a href="https://en.wikipedia.org/wiki/Bus_bunching">
Wikipedia "Bus Bunching"
Wikipedia &quot;Bus Bunching&quot;
</a>
</p>
<Box style={sectionWrapperStyle}>
Expand Down
Loading