Browse Source

Fix incorrect import of redux store (#24805)

lets-bump-hometown-to-mastodon-4.2
Claire 3 years ago committed by GitHub
parent
commit
9c1929efad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      app/javascript/mastodon/main.jsx

3
app/javascript/mastodon/main.jsx

@ -1,7 +1,8 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { setupBrowserNotifications } from 'mastodon/actions/notifications';
import Mastodon, { store } from 'mastodon/containers/mastodon';
import Mastodon from 'mastodon/containers/mastodon';
import { store } from 'mastodon/store/configureStore';
import { me } from 'mastodon/initial_state';
import ready from 'mastodon/ready';

Loading…
Cancel
Save