export const updateForceColors = (thisChannel: ChannelUI, participants: CoreParticipant[] | undefined, allForces: ForceData[]): void => {
  // force colors
  const forceColors = participants?.map((participant) => {
    const force = allForces.find((force) => force.uniqid === participant.forceUniqid)
    return (force && force.color) || '#FFF'