fix(dev): follow up of 1c4bcd9b32

This commit is contained in:
syuilo 2026-06-25 22:10:35 +09:00
commit faecaccab9

View file

@ -120,7 +120,9 @@ function summarizeSamples(samples: MemoryReport['samples']) {
const summary = {} as MemoryReport['summary'];
for (const phase of phases) {
summary[phase] = {} as typeof summary[typeof phase];
summary[phase] = {
memoryUsage: {},
};
const metricKeys = new Set<string>();
for (const sample of samples) {