BOD-14 WIP. CSS issues present with 2 way texting, but working live.

This commit is contained in:
Patrick Fic
2020-03-26 17:03:22 -07:00
parent a507e40816
commit f80f96f3df
19 changed files with 244 additions and 160 deletions

View File

@@ -29,7 +29,6 @@ export default class AppContainer extends Component {
connectionParams: async () => {
//const token = localStorage.getItem("token");
const token = await auth.currentUser.getIdToken(true);
console.log("token", token);
if (token) {
return {
headers: {
@@ -42,7 +41,6 @@ export default class AppContainer extends Component {
});
const subscriptionMiddleware = {
applyMiddleware: async (options, next) => {
console.log("SubMiddleware");
options.authToken = await auth.currentUser.getIdToken(true);
next();
}