feat: remove estimatedBatteryMin references from 11 files (Tasks 3.1-3.14)

This commit is contained in:
2026-05-10 05:07:25 +08:00
parent aa4509ede8
commit 6d906f0bbf
11 changed files with 1 additions and 42 deletions
+1 -4
View File
@@ -42,7 +42,6 @@ interface Preset {
launchOptions: string | null
loadTimeSsd: number | null
loadTimeSd: number | null
estimatedBatteryMin: number | null
tdpWatts: number | null
youtubeVideoId: string | null
screenshots: Array<{ id: string; url: string; width: number; height: number }> | null
@@ -535,9 +534,7 @@ export function PresetDetailModal({
{preset.loadTimeSd !== null && (
<MetaItem label="Load Time (SD)" value={`${preset.loadTimeSd}s`} />
)}
{preset.estimatedBatteryMin !== null && (
<MetaItem label="Battery Life" value={`${preset.estimatedBatteryMin} min`} />
)}
{preset.customSystem && (
<MetaItem label="Custom System" value="Yes" />
)}