Fix mentions in RTL

This commit is contained in:
Alex Gleason
2022-12-23 17:34:14 -06:00
parent f174d0e973
commit fa1d7937a7
4 changed files with 6 additions and 5 deletions

View File

@ -28,7 +28,7 @@ const useLocale = (fallback = 'en'): UseLocaleResult => {
const direction: CSSProperties['direction'] =
RTL_LOCALES.includes(locale)
? 'rtl'
: undefined;
: 'ltr';
return {
locale,