about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/index.js
diff options
context:
space:
mode:
authorprplecake <me@prplecake.com>2022-07-30 20:00:00 -0500
committerprplecake <me@prplecake.com>2022-07-30 20:00:00 -0500
commit991349e6e27f90b671c7892cfbfc74c5a1300f8b (patch)
tree419fed9f14f7c9aeafc72e1b2e3da381dd8b56bc /app/javascript/flavours/glitch/reducers/index.js
parentbcb958c2646e8a92b6973016ccd735012e13904c (diff)
[Glitch] Add ability to follow hashtags in web UI
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/index.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/reducers/index.js b/app/javascript/flavours/glitch/reducers/index.js
index b8aad9fad..991b4aa79 100644
--- a/app/javascript/flavours/glitch/reducers/index.js
+++ b/app/javascript/flavours/glitch/reducers/index.js
@@ -41,6 +41,7 @@ import account_notes from './account_notes';
 import picture_in_picture from './picture_in_picture';
 import accounts_map from './accounts_map';
 import history from './history';
+import tags from './tags';
 
 const reducers = {
   announcements,
@@ -85,6 +86,7 @@ const reducers = {
   account_notes,
   picture_in_picture,
   history,
+  tags,
 };
 
 export default combineReducers(reducers);