diff --git a/dist/bundle.es.js b/dist/bundle.es.js index f397757..ae9a1f8 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -634,7 +634,7 @@ const EMAIL_COLLECTION_ACKNOWLEDGED = 'email_collection_acknowledged'; const INVITE_ACKNOWLEDGED = 'invite_acknowledged'; const LANGUAGE = 'language'; const SHOW_MATURE = 'show_mature'; -const SHOW_REPOSTS = 'show_reposts'; +const HIDE_REPOSTS = 'hide_reposts'; const SHOW_ANONYMOUS = 'show_anonymous'; const SHOW_UNAVAILABLE = 'show_unavailable'; const INSTANT_PURCHASE_ENABLED = 'instant_purchase_enabled'; @@ -671,7 +671,7 @@ var settings = /*#__PURE__*/Object.freeze({ INVITE_ACKNOWLEDGED: INVITE_ACKNOWLEDGED, LANGUAGE: LANGUAGE, SHOW_MATURE: SHOW_MATURE, - SHOW_REPOSTS: SHOW_REPOSTS, + HIDE_REPOSTS: HIDE_REPOSTS, SHOW_ANONYMOUS: SHOW_ANONYMOUS, SHOW_UNAVAILABLE: SHOW_UNAVAILABLE, INSTANT_PURCHASE_ENABLED: INSTANT_PURCHASE_ENABLED, diff --git a/src/constants/settings.js b/src/constants/settings.js index 5dbbaf2..6d10806 100644 --- a/src/constants/settings.js +++ b/src/constants/settings.js @@ -9,7 +9,7 @@ export const EMAIL_COLLECTION_ACKNOWLEDGED = 'email_collection_acknowledged'; export const INVITE_ACKNOWLEDGED = 'invite_acknowledged'; export const LANGUAGE = 'language'; export const SHOW_MATURE = 'show_mature'; -export const SHOW_REPOSTS = 'show_reposts'; +export const HIDE_REPOSTS = 'hide_reposts'; export const SHOW_ANONYMOUS = 'show_anonymous'; export const SHOW_UNAVAILABLE = 'show_unavailable'; export const INSTANT_PURCHASE_ENABLED = 'instant_purchase_enabled';