Skip to content

Commit

Permalink
fix: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhart1o1 committed Feb 7, 2024
1 parent 9d950c0 commit 8d6fb43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/admin-panel/app/api/auth/[...nextauth]/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if (env.NODE_ENV === "development") {
username: { label: "Username", type: "text" },
password: { label: "Password", type: "password" },
},
authorize: async (credentials, req) => {
authorize: async (credentials) => {
if (credentials?.username === "admin" && credentials?.password === "admin") {
return { id: "1", name: "admin", email: "[email protected]" }
}
Expand Down

0 comments on commit 8d6fb43

Please sign in to comment.