diff --git a/app/javascript/flavours/glitch/features/collections/detail/accounts_list.tsx b/app/javascript/flavours/glitch/features/collections/detail/accounts_list.tsx
index 8595c52b8a..5b0da98fee 100644
--- a/app/javascript/flavours/glitch/features/collections/detail/accounts_list.tsx
+++ b/app/javascript/flavours/glitch/features/collections/detail/accounts_list.tsx
@@ -138,12 +138,16 @@ export const CollectionAccountsList: React.FC<{
const renderAccountItemButton = useCallback(
({ relationship, accountId }: RenderButtonOptions) => {
+ if (!me || !relationship) {
+ // Show follow button when logged out (it will trigger the remote interaction modal)
+ return ;
+ }
+
// When viewing your own collection, only show the Follow button
// for accounts you're not following anymore.
const withoutButton =
- !relationship ||
- (collectionOwnerId === me &&
- (relationship.following || relationship.requested));
+ collectionOwnerId === me &&
+ (relationship.following || relationship.requested);
if (withoutButton) return null;
diff --git a/app/javascript/flavours/glitch/features/interaction_modal/index.tsx b/app/javascript/flavours/glitch/features/interaction_modal/index.tsx
index f112f25063..dde414c84c 100644
--- a/app/javascript/flavours/glitch/features/interaction_modal/index.tsx
+++ b/app/javascript/flavours/glitch/features/interaction_modal/index.tsx
@@ -483,11 +483,19 @@ const InteractionModal: React.FC<{
/>
-
+ {intent === 'follow' ? (
+
+ ) : (
+
+ )}