feat(accessibility): Add option to disable loading phrases (#745)

This commit is contained in:
N. Taylor Mullen 2025-06-04 00:46:57 -07:00 committed by GitHub
parent d179b3aae4
commit afc30e314f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 31 additions and 3 deletions

View file

@ -399,7 +399,11 @@ export const App = ({
) : (
<>
<LoadingIndicator
currentLoadingPhrase={currentLoadingPhrase}
currentLoadingPhrase={
config.getAccessibility()?.disableLoadingPhrases
? undefined
: currentLoadingPhrase
}
elapsedTime={elapsedTime}
/>
<Box