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
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