|  | @@ -490,7 +490,6 @@ export const stackInstruments: any = {
 | 
											
												
													
														|  |  export const getInstrumentName = (instruments: any, instrumentName: string) => {
 |  |  export const getInstrumentName = (instruments: any, instrumentName: string) => {
 | 
											
												
													
														|  |    const _instrumentName = instrumentName
 |  |    const _instrumentName = instrumentName
 | 
											
												
													
														|  |      .replace(/ /g, '')
 |  |      .replace(/ /g, '')
 | 
											
												
													
														|  | -    .replace(/\d+|\d+/g, '')
 |  | 
 | 
											
												
													
														|  |      .trim()
 |  |      .trim()
 | 
											
												
													
														|  |      .toLocaleLowerCase();
 |  |      .toLocaleLowerCase();
 | 
											
												
													
														|  |    const _instrument = Object.keys(instruments);
 |  |    const _instrument = Object.keys(instruments);
 | 
											
										
											
												
													
														|  | @@ -502,7 +501,7 @@ export const getInstrumentName = (instruments: any, instrumentName: string) => {
 | 
											
												
													
														|  |    }
 |  |    }
 | 
											
												
													
														|  |    for (let i = 0; i < _instrument.length; i++) {
 |  |    for (let i = 0; i < _instrument.length; i++) {
 | 
											
												
													
														|  |      const _name = _instrument[i].replace(/ /g, '').toLocaleLowerCase();
 |  |      const _name = _instrument[i].replace(/ /g, '').toLocaleLowerCase();
 | 
											
												
													
														|  | -    if (_name.includes(_instrumentName)) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +    if (_instrumentName.includes(_name)) {
 | 
											
												
													
														|  |        return instruments[_instrument[i]] || '';
 |  |        return instruments[_instrument[i]] || '';
 | 
											
												
													
														|  |      }
 |  |      }
 | 
											
												
													
														|  |    }
 |  |    }
 |