Skip to content
Snippets Groups Projects
Unverified Commit 0d943516 authored by Matiss Janis Aboltins's avatar Matiss Janis Aboltins Committed by GitHub
Browse files

:bug: fix incorrect state slice usage (#1433)

<!-- Thank you for submitting a pull request! Make sure to follow the
instructions to write release notes for your PR — it should only take a
minute or two:
https://github.com/actualbudget/docs#writing-good-release-notes -->
parent 5f760671
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ import { useServerURL } from './ServerContext';
import { Tooltip } from './tooltips';
export default function LoggedInUser({ hideIfNoServer, style, color }) {
let userData = useSelector(state => state.userData);
let userData = useSelector(state => state.user.data);
let { getUserData, signOut, closeBudget } = useActions();
let [loading, setLoading] = useState(true);
let [menuOpen, setMenuOpen] = useState(false);
......
---
category: Bugfix
authors: [MatissJanis]
---
Fix incorrect state slice path used in top server status pill
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment