Skip to content

Commit

Permalink
[chore] update default variation
Browse files Browse the repository at this point in the history
  • Loading branch information
showonne committed Oct 31, 2024
1 parent 87065d9 commit b438de9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions packages/react/src/prefabs/ControlBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ export function ControlBar({
[variation],
);
const showText = React.useMemo(
// () => variation === 'textOnly' || variation === 'verbose',
() => false,
() => variation === 'textOnly' || variation === 'verbose',
[variation],
);

Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/prefabs/VideoConference.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export function VideoConference({
</FocusLayoutContainer>
</div>
)}
<ControlBar controls={{ chat: true, settings: !!SettingsComponent }} onScreenShareClick={onScreenShareClick} />
<ControlBar variation="minimal" controls={{ chat: true, settings: !!SettingsComponent }} onScreenShareClick={onScreenShareClick} />
</div>
<Chat
style={{ display: widgetState.showChat ? 'grid' : 'none' }}
Expand Down

0 comments on commit b438de9

Please sign in to comment.