Feature/33 api fails when no pilots or logbook entries #35

Merged
noahspannbauer merged 85 commits from feature/33-api-fails-when-no-pilots-or-logbook-entries into main 2025-02-02 18:24:48 -05:00
Showing only changes of commit 0787d69367 - Show all commits

View File

@@ -35,11 +35,11 @@ const SiteNav: React.FC<unknown> = () => {
}
];
const handleSignInRedirect = () => {
instance
const handleSignInRedirect = async () => {
await instance
.loginRedirect({
...loginRequest,
prompt: 'create',
// prompt: 'create',
})
.catch((error) => console.log(error));
};