Skip to content

Commit

Permalink
Add feedback link.
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Dec 8, 2023
1 parent 58852b3 commit 11aeca5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>AI Talk</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"short_name": "AI Talk",
"name": "Create AI Talk Sample",
"icons": [
{
"src": "favicon.ico",
Expand Down
6 changes: 1 addition & 5 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,6 @@ function App() {
setVerboseLogs(ref.current.verboseLogs);
}, [ref, setVerboseLogs]);

// Setup the website title.
React.useEffect(() => {
document.title = "AI Talk";
}, []);

// The application is started now.
React.useEffect(() => {
// Only allow localhost or https to access microphone.
Expand Down Expand Up @@ -411,6 +406,7 @@ function App() {
playerRef.current.play();
}}>Welcome audio</button> &nbsp;
</React.Fragment>}
<a href="https://github.com/winlinvip/ai-talk/discussions" target='_blank'>Help me!</a>
</p>
<ul className='LogPanel'>
{showVerboseLogs && verboseLogs.map((log, index) => {
Expand Down

0 comments on commit 11aeca5

Please sign in to comment.