diff --git a/app/assets/javascripts/preferences/panes/EndToEndEncryption.tsx b/app/assets/javascripts/preferences/panes/EndToEndEncryption.tsx
index 41cc557e2..decf37929 100644
--- a/app/assets/javascripts/preferences/panes/EndToEndEncryption.tsx
+++ b/app/assets/javascripts/preferences/panes/EndToEndEncryption.tsx
@@ -7,7 +7,7 @@ import { PreferencesGroup, PreferencesSegment, Text, Title } from "../components
const formatCount = (count: number, itemType: string) => `${count} / ${count} ${itemType}`;
-export const EndToEndEncryption: FunctionComponent<{ appState: AppState }> = observer(({ appState }) => {
+const EncryptionEnabled: FunctionComponent<{ appState: AppState }> = observer(({ appState }) => {
const count = appState.accountMenu.structuredNotesAndTagsCount;
const notes = formatCount(count.notes, 'notes');
const tags = formatCount(count.tags, 'tags');
@@ -19,21 +19,31 @@ export const EndToEndEncryption: FunctionComponent<{ appState: AppState }> = obs
const tagIcon =