From 194d42bf8c31df240b53f427c68113892b5b6c10 Mon Sep 17 00:00:00 2001 From: Dan Peterson Date: Wed, 29 Dec 2021 11:44:15 -0600 Subject: [PATCH] Update tag prefix to be consistent with "internal" naming convention used in code. --- ui/constants/tags.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/constants/tags.js b/ui/constants/tags.js index fce58d592..752df3f55 100644 --- a/ui/constants/tags.js +++ b/ui/constants/tags.js @@ -13,11 +13,11 @@ export const DEFAULT_FOLLOWED_TAGS = [ 'technology', ]; -export const DISABLE_COMMENTS_TAG = 'c:disable-comments'; -export const DISABLE_SUPPORT_TAG = 'c:disable-support'; -export const PREFERENCE_EMBED = 'c:preference-embed'; -export const SCHEDULED_LIVESTREAM_TAG = 'c:scheduled-livestream'; -export const LBRY_FIRST_TAG = 'c:lbry-first'; +export const DISABLE_COMMENTS_TAG = 'i:disable-comments'; +export const DISABLE_SUPPORT_TAG = 'i:disable-support'; +export const PREFERENCE_EMBED = 'i:preference-embed'; +export const SCHEDULED_LIVESTREAM_TAG = 'i:scheduled-livestream'; +export const LBRY_FIRST_TAG = 'i:lbry-first'; // Control tags are special tags that are available to the user in some situations. export const CONTROL_TAGS = [DISABLE_COMMENTS_TAG, DISABLE_SUPPORT_TAG, PREFERENCE_EMBED];