Commit b731cdbe authored by Kev's avatar Kev

Format getters.js with prettier

parent f0fbea90
...@@ -2,8 +2,7 @@ import { isProjectImportable, isIncompatible, isImporting } from '../utils'; ...@@ -2,8 +2,7 @@ import { isProjectImportable, isIncompatible, isImporting } from '../utils';
export const isLoading = (state) => state.isLoadingRepos || state.isLoadingNamespaces; export const isLoading = (state) => state.isLoadingRepos || state.isLoadingNamespaces;
export const importingRepoCount = (state) => export const importingRepoCount = (state) => state.repositories.filter(isImporting).length;
state.repositories.filter(isImporting).length;
export const isImportingAnyRepo = (state) => state.repositories.some(isImporting); export const isImportingAnyRepo = (state) => state.repositories.some(isImporting);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment