Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/420824b2792693d795aecf705bd668677faad772 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Convert createTagsSelector to typescript

pull/3439/head
Bogdan 12 months ago
parent badc2567c3
commit 420824b279

@ -1,8 +1,9 @@
import { createSelector } from 'reselect';
import AppState from 'App/State/AppState';
function createTagsSelector() {
return createSelector(
(state) => state.tags.items,
(state: AppState) => state.tags.items,
(tags) => {
return tags;
}
Loading…
Cancel
Save