From 9c1929efad6cd101ea593c321efcb4e8c43e8e1e Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 3 May 2023 10:29:45 +0200 Subject: [PATCH] Fix incorrect import of redux store (#24805) --- app/javascript/mastodon/main.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/mastodon/main.jsx b/app/javascript/mastodon/main.jsx index 69a7ee91f..88a205dd2 100644 --- a/app/javascript/mastodon/main.jsx +++ b/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';