chore: remove repetitive words (#4992)

Signed-off-by: crazeteam <lilujing@outlook.com>
This commit is contained in:
crazeteam
2024-03-28 17:52:33 +08:00
committed by GitHub
parent 60acf8c889
commit e16e8693c8
2 changed files with 4 additions and 4 deletions

View File

@ -589,7 +589,7 @@ GoRoute _rootRoute(Widget child) {
return GoRoute(
path: '/',
redirect: (context, state) async {
// Every time before navigating to splash screen, we check if user is already logged in in desktop. It is used to skip showing splash screen when user just changes apperance settings like theme mode.
// Every time before navigating to splash screen, we check if user is already logged in desktop. It is used to skip showing splash screen when user just changes apperance settings like theme mode.
final userResponse = await getIt<AuthService>().getUser();
final routeName = userResponse.fold(
(user) => DesktopHomeScreen.routeName,