Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
sshane committed Jul 12, 2024
1 parent b19d813 commit b41ab80
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/actions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export function checkLastRoutesData() {
return
}

console.log(`fetching ${limit +LIMIT_INCREMENT } routes`)
dispatch({
type: Types.ACTION_UPDATE_ROUTE_LIMIT,
limit: limit + LIMIT_INCREMENT,
Expand Down Expand Up @@ -183,7 +184,6 @@ export function popTimelineRange(log_id, allowPathChange = true) {
}

export function pushTimelineRange(log_id, start, end, allowPathChange = true) {

return (dispatch, getState) => {
const state = getState();

Expand Down
1 change: 0 additions & 1 deletion src/reducers/globalState.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,6 @@ export default function reducer(_state, action) {
end: state.currentRoute.end_time_utc_millis,
};


if (!state.loop) {
state.loop = {
startTime: state.zoom.start,
Expand Down
2 changes: 1 addition & 1 deletion src/url.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ export function getPrimeNav(pathname) {
return true;
}
return false;
}
}

0 comments on commit b41ab80

Please sign in to comment.