Fixed insights report.

This commit is contained in:
Mike Cao 2023-12-01 16:02:50 -08:00
parent d0e1912faf
commit e068ac0dd9
6 changed files with 16 additions and 15 deletions

View file

@ -9,23 +9,23 @@ export function useFormat() {
const { locale } = useLocale();
const countryNames = useCountryNames(locale);
const formatBrowser = (value: string) => {
const formatBrowser = (value: string): string => {
return BROWSERS[value] || value;
};
const formatCountry = (value: string) => {
const formatCountry = (value: string): string => {
return countryNames[value] || value;
};
const formatRegion = (value: string) => {
const formatRegion = (value: string): string => {
return regions[value] ? regions[value] : value;
};
const formatDevice = (value: string) => {
const formatDevice = (value: string): string => {
return formatMessage(labels[value] || labels.unknown);
};
const formatValue = (value: string, type: string) => {
const formatValue = (value: string, type: string): string => {
switch (type) {
case 'browser':
return formatBrowser(value);