fmt: rename fetchProfile
to authenticate
This commit is contained in:
@ -16,7 +16,7 @@ const AuthLayout = () => {
|
|||||||
const hasAccounts = useAuth((state) => state.accounts.length > 0);
|
const hasAccounts = useAuth((state) => state.accounts.length > 0);
|
||||||
|
|
||||||
const fetchingProfile = useAuth((state) => state.authenticating);
|
const fetchingProfile = useAuth((state) => state.authenticating);
|
||||||
const fetchProfile = useAuth((state) => state.authenticate);
|
const authenticate = useAuth((state) => state.authenticate);
|
||||||
|
|
||||||
const signInRequired = useAuth((state) => state.signInRequired);
|
const signInRequired = useAuth((state) => state.signInRequired);
|
||||||
|
|
||||||
@ -59,9 +59,9 @@ const AuthLayout = () => {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (dbConnected && !loadingAccounts && activeAccount) {
|
if (dbConnected && !loadingAccounts && activeAccount) {
|
||||||
fetchProfile();
|
authenticate();
|
||||||
}
|
}
|
||||||
}, [activeAccount, dbConnected, fetchProfile, loadingAccounts]);
|
}, [activeAccount, dbConnected, authenticate, loadingAccounts]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!signInRequired && location.state?.from) {
|
if (!signInRequired && location.state?.from) {
|
||||||
|
Reference in New Issue
Block a user