diff options
| author | N. Taylor Mullen <[email protected]> | 2025-06-04 00:46:57 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-04 07:46:57 +0000 |
| commit | afc30e314f29e00e462b0f2b11ea63fda31c3c3e (patch) | |
| tree | f15fbc94bdfc065195f031e925d61a28479ec117 /packages/cli/src/ui/App.tsx | |
| parent | d179b3aae41b466a5e75ac4392d5a5ad88ffffb0 (diff) | |
feat(accessibility): Add option to disable loading phrases (#745)
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index ddaf2f02..c463afdb 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -399,7 +399,11 @@ export const App = ({ ) : ( <> <LoadingIndicator - currentLoadingPhrase={currentLoadingPhrase} + currentLoadingPhrase={ + config.getAccessibility()?.disableLoadingPhrases + ? undefined + : currentLoadingPhrase + } elapsedTime={elapsedTime} /> <Box |
