diff --git a/.changeset/hot-pots-prove.md b/.changeset/hot-pots-prove.md new file mode 100644 index 000000000..c030eec51 --- /dev/null +++ b/.changeset/hot-pots-prove.md @@ -0,0 +1,5 @@ +--- +'hostd': minor +--- + +Metrics intervals for 1Y and ALL are now weekly and monthly. diff --git a/apps/hostd/contexts/metrics/types.tsx b/apps/hostd/contexts/metrics/types.tsx index 076d907a6..e47b143f6 100644 --- a/apps/hostd/contexts/metrics/types.tsx +++ b/apps/hostd/contexts/metrics/types.tsx @@ -124,12 +124,12 @@ export const dataTimeSpanOptions: { }, { label: '1Y', - interval: 'daily', + interval: 'weekly', value: '365', }, { label: 'ALL', - interval: 'weekly', + interval: 'monthly', value: 'all', }, ]