disable single attribute per line

This commit is contained in:
jeffvli
2025-07-12 11:17:54 -07:00
parent 92ed8e20c9
commit 8b141d652c
154 changed files with 390 additions and 1800 deletions
+2 -10
View File
@@ -45,22 +45,14 @@ export const AppOutlet = () => {
if (authState === AuthState.LOADING) {
return (
<Center
h="100vh"
w="100%"
>
<Center h="100vh" w="100%">
<Spinner container />
</Center>
);
}
if (isActionsRequired || authState === AuthState.INVALID) {
return (
<Navigate
replace
to={AppRoute.ACTION_REQUIRED}
/>
);
return <Navigate replace to={AppRoute.ACTION_REQUIRED} />;
}
return <Outlet />;