Skip to content

Commit

Permalink
Fixing endpoint naming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sam9116 committed May 29, 2024
1 parent 775fd55 commit 30e3555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FetchArtist.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const FetchArtist = async (artistName) => {
const response = await fetch(
`${process.env.REACT_APP_BACKEND}/FindArtistWithShows/GetArtistsByName?artistName=${artistName}`,
`${process.env.REACT_APP_BACKEND}/FindArtistWithGigs/GetArtistsByName?artistName=${artistName}`,
{
method: "GET",
headers: {
Expand Down

0 comments on commit 30e3555

Please sign in to comment.