diff options
-rw-r--r-- | src/screens/StarterPack/StarterPackScreen.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 4baec9ec1..1b2f61bd5 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -429,11 +429,12 @@ function Header({ color="primary" size="small" disabled={isProcessing} - onPress={onFollowAll}> + onPress={onFollowAll} + style={[a.flex_row, a.gap_xs, a.align_center]}> <ButtonText> <Trans>Follow all</Trans> - {isProcessing && <Loader size="xs" />} </ButtonText> + {isProcessing && <Loader size="xs" />} </Button> )} <OverflowMenu |