Skip to content

Commit

Permalink
Fix a couple typos (#424)
Browse files Browse the repository at this point in the history
* Update authenticated-user.ts

* Add another typo
  • Loading branch information
jeffdaley authored Nov 15, 2023
1 parent 392c456 commit 7277c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/app/components/product/avatar.gts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default class ProductAvatarComponent extends Component<ProductAvatarCompo

private get productID(): string {
const productID = getProductID(this.args.product);
assert("productID must edxist", productID);
assert("productID must exist", productID);
return productID;
}

Expand Down
2 changes: 1 addition & 1 deletion web/app/services/authenticated-user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default class AuthenticatedUserService extends Service {
@tracked _info: AuthenticatedUser | null = null;

get info(): AuthenticatedUser {
assert("Authenticated must exist", this._info);
assert("user info must exist", this._info);
return this._info;
}

Expand Down

0 comments on commit 7277c60

Please sign in to comment.