Skip to content

Commit

Permalink
update default places list
Browse files Browse the repository at this point in the history
  • Loading branch information
vladkens committed Feb 9, 2024
1 parent b03dd4c commit 7b39302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export type TabDto = {

const getInitialStore = (): TabDto[] => {
const sysTzId = getSystemPlace().id
const places = uniq([-1, sysTzId, 5128581, 2643743, 1275339]) as PlaceId[] // NYC, London, Mumbai
const places = uniq([sysTzId, 5128581, 2643743, 1275339, 1850147]) as PlaceId[] // NYC, London, Mumbai, Tokyo
return [{ id: Date.now(), places: places.map((id) => ({ id })), home: sysTzId, name: "Home" }]
}

Expand Down

0 comments on commit 7b39302

Please sign in to comment.