fix: city validation

This commit is contained in:
ThatOneCalculator 2023-02-18 11:42:37 -08:00
parent 2d59e363c0
commit 77eb5c984d
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -164,10 +164,10 @@ const age = $computed(() => {
});
const timeForThem = $computed(() => {
const tzInfo = cityTimezones.lookupViaCity(props.user.location!);
const tzInfo = cityTimezones.lookupViaCity(props.user.location!.replace(/\s.*/,''));
if (tzInfo.length == 0) return "";
const theirTz = tzInfo[0].timezone;
const theirTime = new Date().toLocaleString("en-US", { timeZone: theirTz, hour12: true })
const tz = tzInfo[0].timezone;
const theirTime = new Date().toLocaleString("en-US", { timeZone: tz, hour12: true })
return ` (${theirTime.split(",")[1].trim().split(":")[0]} ${theirTime.split(" ")[1].slice(-2)})`
})