Skip to content

Commit 7508756

Browse files
committed
Fix BAPS <title>
1 parent fede677 commit 7508756

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27-
<title>BAPS3 Presenter</title>
27+
<title>WebStudio | University Radio York</title>
2828
</head>
2929
<body>
3030
<noscript>You need to enable JavaScript to run this app.</noscript>

src/App.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ const App: React.FC = () => {
3333
} = useSelector((state: RootState) => state.session);
3434

3535
if (process.env.REACT_APP_BAPSICLE_INTERFACE) {
36+
document.title = "BAPS3 Presenter";
3637
if (bapsConnectionState !== "CONNECTED") {
3738
return <BAPSSessionHandler />;
3839
} else {

0 commit comments

Comments
 (0)