Skip to content

Commit

Permalink
remove unnecessary async
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeAstapov committed Sep 24, 2024
1 parent 79864fb commit 25254d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/dummy/app/pods/examples/network/notes/note/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { inject as service } from '@ember/service';
export default class extends Route {
@service store;

async model(params) {
model(params) {
return this.store.findRecord('note', params['note_id']);
}
}

0 comments on commit 25254d3

Please sign in to comment.