diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-20 17:49:38 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-04-20 17:49:38 -0400 |
commit | c4e76811cae6cf14d5cc8daed9317f808087ed77 (patch) | |
tree | c162da11dcf70f565d20a9d69071f0cbb5b077b3 /src/components/common/AvatarTitle.tsx | |
parent | bae0136cb1939302b758249a1978251bd37aaee8 (diff) |
linted
Diffstat (limited to 'src/components/common/AvatarTitle.tsx')
-rw-r--r-- | src/components/common/AvatarTitle.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/common/AvatarTitle.tsx b/src/components/common/AvatarTitle.tsx index a38f46fa..81351327 100644 --- a/src/components/common/AvatarTitle.tsx +++ b/src/components/common/AvatarTitle.tsx @@ -8,7 +8,7 @@ type AvatarTitleProps = { }; const AvatarTitle: React.FC<AvatarTitleProps> = ({avatar}) => { return ( - <View style={[styles.container]}> + <View style={styles.container}> <LinearGradient colors={[TAGGS_GRADIENT.start, TAGGS_GRADIENT.end]} useAngle={true} |