From a4887765402a3a0cec0c6210c399589512698b86 Mon Sep 17 00:00:00 2001
From: Rohit <40559587+Rohit3523@users.noreply.github.com>
Date: Mon, 27 Apr 2026 19:34:51 +0530
Subject: [PATCH] fix encrypted option bg and top in create discussion
---
app/views/CreateDiscussionView/index.tsx | 5 +++--
app/views/CreateDiscussionView/styles.ts | 3 +++
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/app/views/CreateDiscussionView/index.tsx b/app/views/CreateDiscussionView/index.tsx
index 650d6753961..d76dde851ab 100644
--- a/app/views/CreateDiscussionView/index.tsx
+++ b/app/views/CreateDiscussionView/index.tsx
@@ -168,13 +168,14 @@ const CreateDiscussionView = ({ route, navigation }: ICreateChannelViewProps) =>
{isEncryptionEnabled ? (
- <>
+
}
additionalAccessibilityLabel={encrypted}
+ backgroundColor={colors.surfaceTint}
/>
- >
+
) : null}
{users.length > 0 ? : null}
diff --git a/app/views/CreateDiscussionView/styles.ts b/app/views/CreateDiscussionView/styles.ts
index d9607f71789..7fff8167a24 100644
--- a/app/views/CreateDiscussionView/styles.ts
+++ b/app/views/CreateDiscussionView/styles.ts
@@ -48,5 +48,8 @@ export default StyleSheet.create({
list: {
flex: 1,
maxHeight: '25%'
+ },
+ encryptionContainer: {
+ marginTop: 10
}
});