Skip to content
Snippets Groups Projects
getCustomTick.ts 165 B
export const getCustomTick = (value: string, isPrivacyModeEnabled: boolean) => {
  if (isPrivacyModeEnabled) {
    return '...';
  } else {
    return value;
  }
};