Skip to content

Commit

Permalink
fix(docs): deleted the line in authorization data provider integration
Browse files Browse the repository at this point in the history
  • Loading branch information
OM-HASE authored Dec 4, 2024
1 parent 6038c7d commit 377bd27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const dataProvider: DataProvider = {
},
getOne: async ({ resource, id, meta }) => {
// removed-line
const response = await fetcher(`${API_URL}/${resource}/${id}`);
const response = await fetch(`${API_URL}/${resource}/${id}`);
// added-line
const response = await fetcher(`${API_URL}/${resource}/${id}`);

Expand Down

0 comments on commit 377bd27

Please sign in to comment.