diff options
Diffstat (limited to 'src/view/com/auth/server-input/index.tsx')
-rw-r--r-- | src/view/com/auth/server-input/index.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/view/com/auth/server-input/index.tsx b/src/view/com/auth/server-input/index.tsx index 8aa23c263..2380fffe2 100644 --- a/src/view/com/auth/server-input/index.tsx +++ b/src/view/com/auth/server-input/index.tsx @@ -87,13 +87,17 @@ export function ServerInputDialog({ values={fixedOption} onChange={setFixedOption}> <ToggleButton.Button name={BSKY_SERVICE} label={_(msg`Bluesky`)}> - {_(msg`Bluesky`)} + <ToggleButton.ButtonText> + {_(msg`Bluesky`)} + </ToggleButton.ButtonText> </ToggleButton.Button> <ToggleButton.Button testID="customSelectBtn" name="custom" label={_(msg`Custom`)}> - {_(msg`Custom`)} + <ToggleButton.ButtonText> + {_(msg`Custom`)} + </ToggleButton.ButtonText> </ToggleButton.Button> </ToggleButton.Group> |