diff --git a/src/app.jsx b/src/app.jsx
index e6258275..1a3b6606 100644
--- a/src/app.jsx
+++ b/src/app.jsx
@@ -258,7 +258,7 @@ function App() {
{isLoggedIn && (
} />
)}
- {isLoggedIn && } />}
+ {isLoggedIn && } />}
{isLoggedIn && } />}
{isLoggedIn && } />}
{isLoggedIn && } />}
diff --git a/src/components/menu.jsx b/src/components/menu.jsx
index 5271f47b..d1b3b791 100644
--- a/src/components/menu.jsx
+++ b/src/components/menu.jsx
@@ -10,6 +10,15 @@ import MenuLink from './MenuLink';
function NavMenu(props) {
const snapStates = useSnapshot(states);
const { instance, authenticated } = api();
+
+ // Home = Following
+ // But when in multi-column mode, Home becomes columns of anything
+ // User may choose pin or not to pin Following
+ // If user doesn't pin Following, we show it in the menu
+ const showFollowing =
+ snapStates.settings.shortcutsColumnsMode &&
+ !snapStates.shortcuts.find((pin) => pin.type === 'following');
+
return (