diff --git a/public/index.html b/public/index.html
index 20074f7..1370868 100644
--- a/public/index.html
+++ b/public/index.html
@@ -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`.
-->
-
PWA Powered Music Player
+ Music Player PWA
diff --git a/public/manifest.json b/public/manifest.json
index c3b2e96..f641e52 100644
--- a/public/manifest.json
+++ b/public/manifest.json
@@ -1,6 +1,6 @@
{
"short_name": "Music Player",
- "name": "PWA Powered Music Player",
+ "name": "Music Player PWA",
"icons": [
{
"src": "favicon.ico",
diff --git a/src/app/index.tsx b/src/app/index.tsx
index 4e225b7..24efafa 100644
--- a/src/app/index.tsx
+++ b/src/app/index.tsx
@@ -293,7 +293,7 @@ function App() {
multiple
type="file"
ref={input}
- accept="audio/mp3"
+ accept="audio/mp3,audio/wav,audio/ogg"
onChange={e => dispatch(ADD_SONGS(e.target.files))}
/>