refactor: remove unused map function (#396)

This commit is contained in:
stew-ro 2020-07-09 13:57:42 -07:00 коммит произвёл GitHub
Родитель 05850603d5
Коммит 195ff80603
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -353,7 +353,6 @@ export default class ModelComposePage extends React.Component<IModelComposePageP
let models = res.data.modelList;
const link = res.data.nextLink;
models.map((m) => m.key = m.modelId);
models = models.filter((m) => composedModelIds.indexOf(m.modelId) === -1);
this.allModels = composedModels.concat(models);
@ -433,7 +432,6 @@ export default class ModelComposePage extends React.Component<IModelComposePageP
let nextPageList = nextPage.nextList;
nextPageList = nextPageList.filter((m) => composedIds.indexOf(m.modelId) === -1);
nextPageList.map((m) => m.key = m.modelId);
const newList = reorderList.concat(nextPageList);
this.allModels = newList;