|  | @@ -249,7 +249,8 @@ export const moveNoteKey = (note: string, step: number) => {
 | 
											
												
													
														|  |  		const _note = ABC_NOTE_DATA[x + step];
 |  |  		const _note = ABC_NOTE_DATA[x + step];
 | 
											
												
													
														|  |  		console.log(note, step, x, _note);
 |  |  		console.log(note, step, x, _note);
 | 
											
												
													
														|  |  		if (Array.isArray(_note)) {
 |  |  		if (Array.isArray(_note)) {
 | 
											
												
													
														|  | -			return step > 0 ? _note[0] : _note[1];
 |  | 
 | 
											
												
													
														|  | 
 |  | +			// return step > 0 ? _note[1] : _note[0];
 | 
											
												
													
														|  | 
 |  | +			return _note[1] ? _note[1] : _note[0];
 | 
											
												
													
														|  |  		} else {
 |  |  		} else {
 | 
											
												
													
														|  |  			return _note ? _note : note;
 |  |  			return _note ? _note : note;
 | 
											
												
													
														|  |  		}
 |  |  		}
 |