···66import PlayerProvider from "components/player/provider";
77import Popup from "components/popup";
88import Viewers from "components/viewers";
99+import Timer from "components/timer";
910import { usePlayer } from "features/player/playerSlice";
1011import {
1112 selectTelemetry,
···6970 const streamerDID = player.livestream?.author?.did;
7071 const streamerProfile = streamerDID ? profiles[streamerDID] : undefined;
7172 const streamerHandle = streamerProfile?.handle;
7373+ const startTime = player.livestream?.record?.createdAt || Date();
72747375 // this would all be really easy if i had library that would give me the
7476 // safe area view height and width but i don't. so let's measure
···262264 )}
263265 </View>
264266 <View flexDirection="row" alignItems="center" gap="$2">
267267+ <Timer start={startTime} />
265268 <Viewers viewers={player.viewers ?? 0} />
266269 <Button
267270 backgroundColor="transparent"