Merge pull request #185 from krawieck/fix/issue-182
This commit is contained in:
commit
fbb24eaff9
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
- Quote blocks in posts and comments are now much prettier
|
- Quote blocks in posts and comments are now much prettier
|
||||||
- Code blocks nwo have monospace font. As they should
|
- Code blocks nwo have monospace font. As they should
|
||||||
|
- Switching accounts in the profile tab now correctly reacts to the change
|
||||||
|
|
||||||
## v0.3.0 - 2021-02-25
|
## v0.3.0 - 2021-02-25
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ class UserProfile extends HookWidget {
|
||||||
sort: SortType.active,
|
sort: SortType.active,
|
||||||
auth: accountsStore.defaultTokenFor(instanceHost)?.raw,
|
auth: accountsStore.defaultTokenFor(instanceHost)?.raw,
|
||||||
));
|
));
|
||||||
});
|
}, [userId, instanceHost]);
|
||||||
|
|
||||||
if (!userDetailsSnap.hasData) {
|
if (!userDetailsSnap.hasData) {
|
||||||
return const Center(child: CircularProgressIndicator());
|
return const Center(child: CircularProgressIndicator());
|
||||||
|
|
Loading…
Reference in New Issue