Skip to content

Commit

Permalink
fixed linter
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodes committed Jul 17, 2024
1 parent d027c76 commit dd3a624
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions addon/services/universe.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { getOwner } from '@ember/application';
import { assert, debug } from '@ember/debug';
import RSVP from 'rsvp';
import loadInstalledExtensions from '../utils/load-installed-extensions';
import loadExtensions from '../utils/load-extensions';
import getWithDefault from '../utils/get-with-default';

export default class UniverseService extends Service.extend(Evented) {
Expand Down
2 changes: 1 addition & 1 deletion addon/utils/fleetbase-api-fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default async function fleetbaseApiFetch(method, uri, params = {}, fetchO
} catch (error) {
// If a fallback response is provided use it instead
if (fetchOptions && fetchOptions.fallbackResponse !== undefined) {
return fetcOptions.fallbackResponse;
return fetchOptions.fallbackResponse;
}

// Handle errors (network errors, JSON parsing errors, etc.)
Expand Down

0 comments on commit dd3a624

Please sign in to comment.