Satisfy formatter

This commit is contained in:
Henrik Giesel 2021-03-22 15:25:49 +01:00
parent 4cd60da7b8
commit 6ec721d550
2 changed files with 6 additions and 4 deletions

View File

@ -56,7 +56,7 @@
if (event.code === "Enter") {
$search = displayedSearch;
}
};
}
const year = i18n.tr(i18n.TR.STATISTICS_RANGE_1_YEAR_HISTORY);
const deck = i18n.tr(i18n.TR.STATISTICS_RANGE_DECK);

View File

@ -14,9 +14,11 @@
value: graphValue,
} = useAsyncReactive(() => getGraphData($search, $days), [search, days]);
const { loading: prefsLoading, error: prefsError, value: prefsValue } = useAsync(
() => getPreferences()
);
const {
loading: prefsLoading,
error: prefsError,
value: prefsValue,
} = useAsync(() => getPreferences());
$: revlogRange = daysToRevlogRange($days);