Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodes committed Jan 25, 2024
1 parent 84e6304 commit 35e62ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon/services/universe.js
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ export default class UniverseService extends Service.extend(Evented) {
class: itemClass,
inlineClass,
wrapperClass,
overwriteWrapperClass
overwriteWrapperClass,
};

return menuItem;
Expand Down
2 changes: 1 addition & 1 deletion addon/utils/get-resource-name-from-transition.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function getResourceNameFromTransition(transition, options = {})
let resourceName = routePathSegments[3];

if (options.humanize === true) {
return humanize(resouceName);
return humanize(resourceName);
}

return resourceName;
Expand Down

0 comments on commit 35e62ff

Please sign in to comment.