Skip to content

Commit

Permalink
fix URL used for login endpoint on our front end (#695)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgraham4401 authored Mar 11, 2024
1 parent 405ca12 commit 1f3a673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/store/userSlice/user.slice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const userApi = haztrakApi.injectEndpoints({
// Note: build.query<ReturnType, ArgType>
login: build.mutation<LoginResponse, LoginRequest>({
query: (data) => ({
url: 'login',
url: 'user/login',
method: 'POST',
data: data,
}),
Expand Down

0 comments on commit 1f3a673

Please sign in to comment.