Skip to content

Commit 9099292

Browse files
authored
Remove shimmer animation from freebuff waiting room Wait time (#523)
1 parent cc67463 commit 9099292

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

cli/src/components/waiting-room-screen.tsx

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -190,13 +190,9 @@ export const WaitingRoomScreen: React.FC<WaitingRoomScreenProps> = ({
190190
<text style={{ fg: theme.foreground, alignSelf: 'flex-start' }}>
191191
<span fg={theme.muted}>Wait </span>
192192
<span fg={theme.primary}>
193-
<ShimmerText
194-
text={
195-
session.position === 1
196-
? 'any moment now'
197-
: formatWait(session.estimatedWaitMs)
198-
}
199-
/>
193+
{session.position === 1
194+
? 'any moment now'
195+
: formatWait(session.estimatedWaitMs)}
200196
</span>
201197
</text>
202198
<text style={{ fg: theme.muted, alignSelf: 'flex-start' }}>

0 commit comments

Comments
 (0)