Skip to content

Commit

Permalink
fix doc example (#7535)
Browse files Browse the repository at this point in the history
  • Loading branch information
sly7-7 authored May 21, 2021
1 parent 1f80a43 commit 65aef9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/adapter/addon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
import EmberObject from '@ember/object';
async function fetchData(url, options = {}) {
let response = await fetch(`./${modelName}s/${id}`, options);
let response = await fetch(url, options);
return response.toJSON();
}
Expand Down

0 comments on commit 65aef9d

Please sign in to comment.