diff --git a/bfrontend/public/index.html b/bfrontend/public/index.html
index b344dc6..e4e3f2d 100644
--- a/bfrontend/public/index.html
+++ b/bfrontend/public/index.html
@@ -3,10 +3,10 @@
- Brainlet
+ app
-
+
diff --git a/bfrontend/public/manifest.json b/bfrontend/public/manifest.json
index 9d3958d..05b0062 100644
--- a/bfrontend/public/manifest.json
+++ b/bfrontend/public/manifest.json
@@ -1,8 +1,8 @@
{
- "short_name": "Brainlet",
- "name": "Brainlet",
+ "short_name": "waffle",
+ "name": "waffle",
"start_url": ".",
"display": "standalone",
- "theme_color": "#000000",
- "background_color": "#ffffff"
+ "theme_color": "#22232b",
+ "background_color": "#22232b"
}
diff --git a/bfrontend/src/Components/Channels/ChannelView.js b/bfrontend/src/Components/Channels/ChannelView.js
index f84c035..34d65d1 100644
--- a/bfrontend/src/Components/Channels/ChannelView.js
+++ b/bfrontend/src/Components/Channels/ChannelView.js
@@ -24,6 +24,7 @@ const ChannelView = ({ messages, channel, channelPresenceClientList }) => {
if (!channel) return;
dispatch({ type: 'channels/selectchannel', channelId: channel._id });
+ document.title = `#${channel.title}`;
}, [dispatch, channel]);
if (channel) {
diff --git a/bfrontend/src/Util/Errors.js b/bfrontend/src/Util/Errors.js
index 8919155..adc104f 100644
--- a/bfrontend/src/Util/Errors.js
+++ b/bfrontend/src/Util/Errors.js
@@ -110,6 +110,6 @@ const getCreateChannelError = (json) => {
}
};
-const couldNotReach = "Whoops! We couldn't reach Brainlet.";
+const couldNotReach = "Whoops! We couldn't reach the server.";
module.exports = { couldNotReach, getLoginMessageFromError, getSignupMessageFromError, getCreatePostError, getCreateChannelError }
\ No newline at end of file