Skip to content

Commit

Permalink
Ran prettier to delete some spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
yelodevopsi committed Oct 19, 2023
1 parent 2ace02d commit f325cea
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/api/auth/[...nextauth]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const authOptions: AuthOptions = {
],
session: {
strategy: "jwt",
maxAge: 1 * 60 * 60, // 1h 5min (calculated from Azure AD token) or 1h 30 min in other cases.
maxAge: 1 * 60 * 60, // 1h 5min (calculated from Azure AD token) or 1h 30 min in other cases.
},

callbacks: {
Expand Down
1 change: 0 additions & 1 deletion frontend/src/data/fetchWithToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export async function fetchWithToken<T>(path: string): Promise<T | undefined> {
} catch (e) {
console.error(e);
}

}

function mockedCall<T>(path: string): Promise<T> {
Expand Down

0 comments on commit f325cea

Please sign in to comment.