about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/intersection_observer_article.js
diff options
context:
space:
mode:
authorJeremy Kescher <jeremy@kescher.at>2022-11-01 08:38:05 +0000
committerGitHub <noreply@github.com>2022-11-01 09:38:05 +0100
commit41885c871560bdd3a5f1886e5269c24e2686a5ec (patch)
treecf5e19f66987b664c74e3e697c0c361fd56ddee7 /app/javascript/flavours/glitch/components/intersection_observer_article.js
parent968f34300681d8082cf2f824722a3945fc604b2d (diff)
Remove/update old "tootsuite" references, except those needed for Docker (#1860)
Diffstat (limited to 'app/javascript/flavours/glitch/components/intersection_observer_article.js')
-rw-r--r--app/javascript/flavours/glitch/components/intersection_observer_article.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/components/intersection_observer_article.js b/app/javascript/flavours/glitch/components/intersection_observer_article.js
index 90667d9f5..b28e44e4c 100644
--- a/app/javascript/flavours/glitch/components/intersection_observer_article.js
+++ b/app/javascript/flavours/glitch/components/intersection_observer_article.js
@@ -94,7 +94,7 @@ export default class IntersectionObserverArticle extends React.Component {
     // When the browser gets a chance, test if we're still not intersecting,
     // and if so, set our isHidden to true to trigger an unrender. The point of
     // this is to save DOM nodes and avoid using up too much memory.
-    // See: https://github.com/tootsuite/mastodon/issues/2900
+    // See: https://github.com/mastodon/mastodon/issues/2900
     this.setState((prevState) => ({ isHidden: !prevState.isIntersecting }));
   }