diff --git a/apps/mobile/src/components/ActionSheetComponent/index.js b/apps/mobile/src/components/ActionSheetComponent/index.js
index 1f5daee30..007902cfc 100644
--- a/apps/mobile/src/components/ActionSheetComponent/index.js
+++ b/apps/mobile/src/components/ActionSheetComponent/index.js
@@ -20,6 +20,7 @@ import {
setColorScheme,
SIZE,
WEIGHT,
+ ph,
} from '../../common/common';
import {useTracked} from '../../provider';
import {ACTIONS} from '../../provider/actions';
@@ -565,21 +566,61 @@ export const ActionSheetComponent = ({
: null}
-
- Synced
-
+ {note.type !== 'notebook' ? null : (
+
+ {note && note.topics
+ ? note.topics.slice(1, 4).map(topic => (
+
+
+ {topic.title}
+
+
+ ))
+ : null}
+
+ )}
+
+ {note.type !== 'note' ? null : (
+
+ Synced
+
+ )}
)}