diff --git a/README.md b/README.md
index 6fd4a8ea4..2a6ef99f4 100644
--- a/README.md
+++ b/README.md
@@ -88,6 +88,7 @@ This will run a demo version, which you can turn into a fully licenced version b
- Adding the option of paying for Retrospected Pro annually, getting one month free in the process
- Update prices, especially for USD
+- Make the integration tests less brittle by using specific attributes
### Version 4.12.1 (hotfix)
diff --git a/frontend/src/Layout.tsx b/frontend/src/Layout.tsx
index e0a8786d2..14f614605 100644
--- a/frontend/src/Layout.tsx
+++ b/frontend/src/Layout.tsx
@@ -93,6 +93,7 @@ function App() {
const isInitialised = useIsInitialised();
const user = useUser();
const isPro = useIsPro();
+ const displayGoPro = !isPro && user && user.accountType !== 'anonymous';
const goToHome = useCallback(() => history.push('/'), [history]);
useEffect(() => {
trackPageView(window.location.pathname);
@@ -128,6 +129,7 @@ function App() {
aria-label="Menu"
onClick={togglePanel}
size="large"
+ data-cy="side-panel-toggle"
>
@@ -147,7 +149,7 @@ function App() {
- {!isPro ? (
+ {displayGoPro ? (
diff --git a/frontend/src/auth/AccountMenu.tsx b/frontend/src/auth/AccountMenu.tsx
index 12af417f9..2c6ee2d7c 100644
--- a/frontend/src/auth/AccountMenu.tsx
+++ b/frontend/src/auth/AccountMenu.tsx
@@ -89,7 +89,7 @@ const AccountMenu = () => {
{translations.Header.account}
) : null}
-
+ {user && user.accountType !== 'anonymous' ? : null}