We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc67463 commit 9099292Copy full SHA for 9099292
cli/src/components/waiting-room-screen.tsx
@@ -190,13 +190,9 @@ export const WaitingRoomScreen: React.FC<WaitingRoomScreenProps> = ({
190
<text style={{ fg: theme.foreground, alignSelf: 'flex-start' }}>
191
<span fg={theme.muted}>Wait </span>
192
<span fg={theme.primary}>
193
- <ShimmerText
194
- text={
195
- session.position === 1
196
- ? 'any moment now'
197
- : formatWait(session.estimatedWaitMs)
198
- }
199
- />
+ {session.position === 1
+ ? 'any moment now'
+ : formatWait(session.estimatedWaitMs)}
200
</span>
201
</text>
202
<text style={{ fg: theme.muted, alignSelf: 'flex-start' }}>
0 commit comments