diff --git a/src/components/views/Subscriptions.jsx b/src/components/views/Subscriptions.jsx
index 867a11a0..714a72fb 100755
--- a/src/components/views/Subscriptions.jsx
+++ b/src/components/views/Subscriptions.jsx
@@ -563,11 +563,11 @@ const Subscriptions = () => {
<>
Subscriptions
- {account.subscriptions.length < 1 ? (
+ {account?.subscriptions.length < 1 ? (
You haven't subscribed to any board yet.
) : (
- You have subscribed to {account.subscriptions.length} board{account.subscriptions.length > 1 ? "s" : null}.
+ You have subscribed to {account?.subscriptions.length} board{account?.subscriptions.length > 1 ? "s" : null}.
)}
>
@@ -609,7 +609,7 @@ const Subscriptions = () => {
- { feed ? (
+ { !feed ? (
null
) : (