export function getRecentlyAddedItemDescription()

in src/data/help.js [17:21]


export function getRecentlyAddedItemDescription(numberOfChannels, itemType) {
  return numberOfChannels > 1
    ? `This ${itemType} was recently added. It may take some time before it is available on all channels.`
    : `This ${itemType} was recently added. Data may not be available until a new version is released with this ${itemType} and clients are updated to it.`;
}