- {stat.icon} {stat.label}
+ {stat.label}
{stat.value.toFixed(stat.unit === "%" || stat.unit === "분" ? 1 : 0).toLocaleString()}
@@ -463,24 +742,32 @@ export default function CustomStatsWidget({ element, refreshInterval = 60000 }:
- {allStats.map((stat, index) => (
-
- ))}
+ {allStats.map((stat, index) => {
+ const isChecked = selectedStats.includes(stat.label);
+ return (
+
+ );
+ })}
@@ -491,7 +778,10 @@ export default function CustomStatsWidget({ element, refreshInterval = 60000 }:
적용 ({selectedStats.length}개 선택)