Skip to content

Commit

Permalink
Merge pull request #254 from kategengler/kg-debug-tutorial
Browse files Browse the repository at this point in the history
Fix beta and release tutorial
  • Loading branch information
mansona authored Dec 6, 2024
2 parents d5f121e + 1fbb11d commit 047eb4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/assets/downloads/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ div,
span,
a,
button {
font-family: Lato, "Open Sans", "Helvetica Neue", "Segoe UI", Helvetica, Arial,
sans-serif;
font-family: Lato, "Open Sans", "Helvetica Neue", "Segoe UI", Helvetica,
Arial, sans-serif;
line-height: 1.5;
}

Expand Down
3 changes: 1 addition & 2 deletions src/markdown/tutorial/part-2/11-ember-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,9 +325,8 @@ Notice that we are using the `JsonSuffixHandler` we created earlier. We also use
Lastly, let's update our `store` service to use the new `RequestManager` we created.
```run:file:patch lang=js cwd=super-rentals filename=app/services/store.js
@@ -1 +1,7 @@
@@ -1 +1,6 @@
-export { default } from 'ember-data/store';
+// eslint-disable-next-line ember/use-ember-data-rfc-395-imports
+import BaseStore from 'ember-data/store';
+import { service } from '@ember/service';
+
Expand Down

0 comments on commit 047eb4b

Please sign in to comment.