let hasFetchedSystemSettings = false; let hasFetchedCategories = false; export function getHasFetchedSystemSettings() { return hasFetchedSystemSettings; } export function setHasFetchedSystemSettings(value) { hasFetchedSystemSettings = value; } export function getHasFetchedCategories() { return hasFetchedCategories; } export function setHasFetchedCategories(value) { hasFetchedCategories = value; }