Skip to content

Commit

Permalink
Update WelcomeScreen.tsx (#1205)
Browse files Browse the repository at this point in the history
Remove check for Brave browser when creating a room.
  • Loading branch information
mrose17 authored Aug 9, 2023
1 parent 97b9782 commit e6b7fc0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/WelcomeScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { DispatchWithoutAction } from "react";
import { css } from '@emotion/react';
import { css } from "@emotion/react";
import { useSubscribedStatus } from "../hooks/use-subscribed-status";
import { Background } from "./Background";
import { Footer } from "./Footer";
Expand Down Expand Up @@ -74,10 +74,6 @@ export const WelcomeScreen: React.FC<Props> = ({
return;
};
const Body: React.FC = () => {
if (!hasInitialRoomName && browser.isBrave === false) {
return <DownloadBrave />;
}

if (!browser.supportsWebRTC) {
return (
<SectionWithLogo
Expand Down

0 comments on commit e6b7fc0

Please sign in to comment.