diff --git a/app/(manage)/manage/benchmarks/benchmarks-client.tsx b/app/(manage)/manage/benchmarks/benchmarks-client.tsx
index 3b0be44..0a5888e 100644
--- a/app/(manage)/manage/benchmarks/benchmarks-client.tsx
+++ b/app/(manage)/manage/benchmarks/benchmarks-client.tsx
@@ -33,7 +33,6 @@ interface PerformanceEntry {
launchOptions: string | null
settingsJson: string | null
userNotes: string | null
- estimatedBatteryMin: number | null
customSystem: string | null
isRemoved: boolean
removedReason: string | null
diff --git a/app/game/[id]/game-page-client.tsx b/app/game/[id]/game-page-client.tsx
index 639bfaa..17b0755 100644
--- a/app/game/[id]/game-page-client.tsx
+++ b/app/game/[id]/game-page-client.tsx
@@ -137,7 +137,6 @@ interface Preset {
launchOptions: string | null
loadTimeSsd: number | null
loadTimeSd: number | null
- estimatedBatteryMin: number | null
tdpWatts: number | null
youtubeVideoId: string | null
screenshots: Array<{
@@ -233,7 +232,6 @@ interface StatsResponse {
id: string
hardwareSlug: string
tdpWatts: number
- estimatedBatteryMin: number
estimatedBatteryHours: number
wattHours: number | null
tdpMax: number | null
diff --git a/app/game/[id]/page.tsx b/app/game/[id]/page.tsx
index 7d23954..93db355 100644
--- a/app/game/[id]/page.tsx
+++ b/app/game/[id]/page.tsx
@@ -178,7 +178,6 @@ export default async function GamePage({
launchOptions: performanceEntries.launchOptions,
loadTimeSsd: performanceEntries.loadTimeSsd,
loadTimeSd: performanceEntries.loadTimeSd,
- estimatedBatteryMin: performanceEntries.estimatedBatteryMin,
tdpWatts: performanceEntries.tdpWatts,
youtubeVideoId: performanceEntries.youtubeVideoId,
customSystem: performanceEntries.customSystem,
@@ -281,7 +280,6 @@ export default async function GamePage({
launchOptions: p.launchOptions,
loadTimeSsd: p.loadTimeSsd ?? null,
loadTimeSd: p.loadTimeSd ?? null,
- estimatedBatteryMin: p.estimatedBatteryMin ?? null,
tdpWatts: p.tdpWatts ?? null,
youtubeVideoId: p.youtubeVideoId ?? null,
screenshots: null as Array<{ id: string; url: string; width: number; height: number; orderIndex: number }> | null,
diff --git a/app/game/[id]/preset-detail-modal.tsx b/app/game/[id]/preset-detail-modal.tsx
index 4718d1d..bf92084 100644
--- a/app/game/[id]/preset-detail-modal.tsx
+++ b/app/game/[id]/preset-detail-modal.tsx
@@ -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 && (
- Approximate battery life in minutes while playing this game. -
-