Skip to content

Commit 1025fb0

Browse files
committed
refactor(util): update default location coordinates
- Change default location from [118.0248, 24.6279] to [114.0436, 22.6292] - This modification affects the getLastLocation function in LocationUtils.ts
1 parent 8ad966c commit 1025fb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/util/LocationUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function getLastLocation(): [number, number] {
6060
if (lastLocation) {
6161
return JSON.parse(lastLocation) as [number, number]
6262
}
63-
return [118.0248,24.6279]
63+
return [114.0436,22.6292]
6464
}
6565

6666
const expotedObject = {

0 commit comments

Comments
 (0)