aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-06-17 23:04:57 -0700
committerShravya Ramesh <shravs1208@gmail.com>2021-06-17 23:04:57 -0700
commit67fcb0b963a9f38451a382803bcfaa5fb001cded (patch)
tree3135f31c97c444591ae60290615480f1b90d88e8 /src/components/profile
parent5d5cb7830061661a83d9ee30a24727104212f789 (diff)
Revamp Moment Post View
Diffstat (limited to 'src/components/profile')
-rw-r--r--src/components/profile/MomentMoreInfoDrawer.tsx7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/components/profile/MomentMoreInfoDrawer.tsx b/src/components/profile/MomentMoreInfoDrawer.tsx
index a796ffd8..a8adcfda 100644
--- a/src/components/profile/MomentMoreInfoDrawer.tsx
+++ b/src/components/profile/MomentMoreInfoDrawer.tsx
@@ -169,7 +169,6 @@ const MomentMoreInfoDrawer: React.FC<MomentMoreInfoDrawerProps> = (props) => {
return (
<>
<TouchableOpacity
- style={styles.icon}
onPress={() => {
setIsOpen(true);
}}>
@@ -184,10 +183,4 @@ const MomentMoreInfoDrawer: React.FC<MomentMoreInfoDrawerProps> = (props) => {
);
};
-const styles = StyleSheet.create({
- icon: {
- marginRight: '3%',
- },
-});
-
export default MomentMoreInfoDrawer;