Skip to content

Commit defc1bc

Browse files
aapelivclaude
andcommitted
mobile: re-add Published time to the triple-tap debug toast
Surfaces the running bundle's createdAt (the per-publish re-stamped time) in human-readable ISO alongside the version strings. JS-only, fingerprint-neutral. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent a17fceb commit defc1bc

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

app/mobile/app/(tabs)/_layout.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { Platform, StyleSheet, Text, useColorScheme, View } from "react-native";
77

88
import { TabBarIcon } from "@/components/TabBarIcon";
99
import {
10+
createdAt,
1011
embeddedDebugVersion,
1112
isEmbeddedLaunch,
1213
runningDebugVersionOTA,
@@ -29,6 +30,7 @@ function getDebugInfo(): string {
2930
`Embedded: ${embeddedDebugVersion}`,
3031
`Source: ${isEmbeddedLaunch ? "embedded build" : "OTA update"}`,
3132
`Channel: ${updateChannel}`,
33+
`Published: ${createdAt}`,
3234
`Platform: ${Platform.OS} ${Platform.Version}`,
3335
].join("\n");
3436
}

0 commit comments

Comments
 (0)